This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed
Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11[ ![ Build Status] ( https://github.com/dart-lang/logging/workflows/Dart%20CI/badge.svg )] ( https://github.com/dart-lang/logging/actions?query=workflow%3A"Dart+CI"+branch%3Amaster )
22[ ![ Pub] ( https://img.shields.io/pub/v/logging.svg )] ( https://pub.dev/packages/logging )
3+ [ ![ package publisher] ( https://img.shields.io/pub/publisher/logging.svg )] ( https://pub.dev/packages/logging/publisher )
34
45## Initializing
56
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
2+ // for details. All rights reserved. Use of this source code is governed by a
3+ // BSD-style license that can be found in the LICENSE file.
4+
15import 'dart:async' ;
26
37import 'level.dart' ;
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
2+ // for details. All rights reserved. Use of this source code is governed by a
3+ // BSD-style license that can be found in the LICENSE file.
4+
15import 'dart:async' ;
26import 'dart:collection' ;
37
@@ -55,7 +59,7 @@ class Logger {
5559 ///
5660 /// Calling `Logger(name)` will return the same instance whenever it is called
5761 /// with the same string name. Loggers created with this constructor are
58- /// retained indefinitely and available through [attachedLoggers] ;
62+ /// retained indefinitely and available through [attachedLoggers] .
5963 factory Logger (String name) =>
6064 _loggers.putIfAbsent (name, () => Logger ._named (name));
6165
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ environment:
1010 sdk : " >=2.12.0 <3.0.0"
1111
1212dev_dependencies :
13- lints : ^ 1.0.0
13+ lints : ' >= 1.0.0 <3.0.0 '
1414 test : ^1.16.0
You can’t perform that action at this time.
0 commit comments