logging
logging copied to clipboard
A Dart package for debug and error logging.
```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...
 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...
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...