loggme 1.0.3 copy "loggme: ^1.0.3" to clipboard
loggme: ^1.0.3 copied to clipboard

A litle package be relax when your apps are running on production. Allways receive logs about what happen there through Telegram, slack and any other http REST API.

example/lib/example.dart

import 'package:loggme/loggme.dart';
import 'package:dotenv/dotenv.dart';

void main() async {
  final dotEnv = DotEnv()..load();

  final telegramChannelsSenders = <TelegramChannelSender>[
    TelegramChannelSender(
        botId: dotEnv['TELEGRAM_BOT_ID']!, chatId: dotEnv['TELEGRAM_CHAT_ID']!)
  ];

  final slackChannelsSenders = <SlackChannelSender>[
    SlackChannelSender(
        applicationToken: dotEnv['SLACK_APPLICATION_ID']!,
        channelName: dotEnv['SLACK_CHANNEL_NAME']!)
  ];

  /// Send on multiple channels (telegram, slack, and custom)
  final logger = Logger(
      slackChannelsSenders: slackChannelsSenders,
      telegramChannelsSenders: telegramChannelsSenders);

  /// Send o Slack only
  Logger.sendOnSlack(slackChannelsSenders);

  /// Send o Telegram only
  Logger.sendOnTelegram(telegramChannelsSenders);

  final telegramMessage = TelegramLoggMessage()
    ..addNormalText('Hello mans.\n')
    ..addBoldText("Here is a litle logger build by")
    ..addMention('Ofceab Studio');

  final slackMessage = SlackLoggMessage()
    ..addNormalText('Hello mans.\n')
    ..addBoldText("Here is a litle logger build by")
    ..addMention('Ofceab Studio');

  final responses = await logger.logs(
      slackLoggMessage: slackMessage, telegramLoggMessage: telegramMessage);

  responses.forEach((log) {
    if (log.isLeft()) {
      print(log.fold((l) => l, (r) => null)!.error);
    }
  });
}
4
likes
0
pub points
38%
popularity

Publisher

verified publisherofceabstudio.dev

A litle package be relax when your apps are running on production. Allways receive logs about what happen there through Telegram, slack and any other http REST API.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

auto_exporter, dartz, dotenv, http

More

Packages that depend on loggme