Git Product home page Git Product logo

l's Issues

Any exception or error resulting in Stack Overflow.

Hello!

There seems to be a specific combination of options and arguments that results in an uncontrollable Stack Overflow exception. I've managed to reproduce this behavior using the following code:

void main() => l.capture(
      () => runZonedGuarded(
        () => throw Exception(),
        (e, s) => print(e),
      ),
      LogOptions(
        handlePrint: false,
      ),
    );

Using the logger itself as the runZonedGuarded's onError argument or leaving the LogOptions' handlePrint as its default does not trigger the issue. The exception's StackTrace is not very informative, as it points to only two segments repeatedly, and those segments are _CustomZone.print and InnerZonedMixin.capture:

#0      _CustomZone._parentDelegate (dart:async/zone.dart:1150:3)
#1      _CustomZone.print (dart:async/zone.dart:1400:55)
#2      InnerZonedMixin.capture.<anonymous closure> (package:l/src/inner_zoned_mixin.dart:43:20)
#3      _CustomZone.print (dart:async/zone.dart:1402:19)
#4      InnerZonedMixin.capture.<anonymous closure> (package:l/src/inner_zoned_mixin.dart:43:20)
#5      _CustomZone.print (dart:async/zone.dart:1402:19)
#6      InnerZonedMixin.capture.<anonymous closure> (package:l/src/inner_zoned_mixin.dart:43:20)
...

Print Stack Trace to log when it had been passed

Could be nice to print Stack Trace to log when it had been passed to the l.e() or l.w()
For example if we passing Error and Stack Trace to the Sentry - we expect to see clear Error message without Stack Trace and Stack Trace as additional record.
And for the debug it could be nice to always see Stack Trace in the console if it is possible.
Maybe it could be option to print Stack Trace.

Maximum length of the log message

Field for indicating the maximum length of the log message.
If exceeded, transfer to the next line.
Also format multi-line comments.

1589308341934 [I] Single line
1589308342053 [I] Multi
                | Line
                | Message
1589308342053 [I] Single line

messageFormatting - add StackTrace parameter

Could be nice to add stackTrace parameter to easily print stackTrace to log using predefined formating.

final logOptions = LogOptions(
      messageFormatting: formatLoggerMessage,
    );
l.capture(fn, logOptions);

String formatLoggerMessage(
      Object message,
  ->  StackTrace stackTrace,
      logging.LogLevel level,
      DateTime time,

Override log icons

Override like this:

๐Ÿ› 12:22:49.712326 DEBUG  - DoSomeWork - This is debug message
๐Ÿ‘ป 12:22:49.712369 INFO - DoSomeWork - This is info message
โš ๏ธ 12:22:49.712403 WARNING  - DoSomeWork - This is warning message

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.