logging icon indicating copy to clipboard operation
logging copied to clipboard

A Dart package for debug and error logging.

Results 23 logging issues
Sort by recently updated
recently updated
newest added

```dart class Logger { // ... Logger call(String childName) { return Logger('$fullName.$childName'); } } ``` With the above `call` method in the `Logger` class, creating child loggers could be more...

![](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExc3BoYmJrendhcWk5aW9wemJhbWVxZzh6cHV3bmM1YXVyeGo4bXBncSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/wxFRiFkKHlC6I/giphy-downsized.gif) As part of some product excellence pursuits for [Dart Devtools](https://github.com/flutter/devtools) we would like to make sure that package:logging records are also sent to Dart Devtools. TBD i'm going to...

Hello everyone, I just updated my "logging" dependency version from 1.1.1 to 1.2.0 and i am getting this error when i run this command: **"flutter pub run build_runner build --delete-conflicting-outputs"**...

I am working on adding functionality to a project whereby the logging levels can be set in the UI. For example: Root -> INFO Package_A -> OFF Package_B -> ALL...

Hey, there I have added the `metaData` field as requested in Issue (#115). Places I have made changes are the `LogRecord` class and in all the logging functions.

Is the following behavior expected? Consider a root logger that filters on `Level.WARNING` with a child logger that filters on `Level.FINE`, but has no listeners. Once the child logger accepts...

I was experimenting with ANSI colors in log to create a new logging package, using both `print` and `dart:developer/log` functions. I found some inconsistences: 1) `dart:developer`.`log` doesn't work at all...

Many logging tools log Metadata with the traditional message, error and stack trace logs. Datadog is an example, it accepts a parameter called `attributes`, which is a json Map where...

When switching over `LogRecord.Level` i get an error (maybe a lint error) saying ``` The switch case expression type 'Level' can't override the == operator.dart(case_expression_type_implements_equals) ``` #### Example: ```dart Logger.root.onRecord.listen((LogRecord...

type-enhancement
next-breaking-release

Can you give me some recommended guidelines on what to print for each log level? I'm a bit confused about using the `CONFIG` and `FINE` levels. Should I just pass...

type-documentation