diff --git a/README.md b/README.md index 1957115..fb6d558 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -[![Coverage](https://img.shields.io/codecov/c/github/dev-kasibhatla/logs)](https://github.com/dev-kasibhatla/logs) -[![License](https://img.shields.io/github/license/dev-kasibhatla/logs)](https://github.com/dev-kasibhatla/logs/blob/main/LICENSE) -[![Tests](https://img.shields.io/github/actions/workflow/status/dev-kasibhatla/logs/.github%2Fworkflows%2Fdart-tests.yml)](https://github.com/dev-kasibhatla/logs/actions) +[![Coverage](https://img.shields.io/codecov/c/github/dev-kasibhatla/log_plus)](https://github.com/dev-kasibhatla/log_plus) +[![License](https://img.shields.io/github/license/dev-kasibhatla/log_plus)](https://github.com/dev-kasibhatla/log_plus/blob/main/LICENSE) +[![Tests](https://img.shields.io/github/actions/workflow/status/dev-kasibhatla/log_plus/.github%2Fworkflows%2Fdart-tests.yml)](https://github.com/dev-kasibhatla/log_plus/actions) -# Logs +# log_plus Small, feature-rich logging package for Dart and Flutter. Written in pure Dart, with no dependencies. @@ -34,7 +34,7 @@ Optionally include stack trace in logs Get started with no configuration: ```dart -import 'package:logs/logs.dart'; +import 'package:log_plus/logs.dart'; void main() { final log = Logs(); @@ -49,7 +49,7 @@ void main() { Customise output and storage: ```dart -import 'package:logs/logs.dart'; +import 'package:log_plus/logs.dart'; void main() { final log = Logs( @@ -68,5 +68,5 @@ void main() { ``` ## Additional information -Report any issues or feature requests on the [GitHub repository](https://github.com/dev-kasibhatla/logs/issues). +Report any issues or feature requests on the [GitHub repository](https://github.com/dev-kasibhatla/log_plus/issues). PRs welcome. diff --git a/example/main.dart b/example/main.dart index 0c624fe..75321d6 100644 --- a/example/main.dart +++ b/example/main.dart @@ -1,4 +1,4 @@ -import 'package:logs/logs.dart'; +import 'package:log_plus/logs.dart'; void main() { print( diff --git a/lib/logs.dart b/lib/logs.dart index 3df793b..edcdd18 100644 --- a/lib/logs.dart +++ b/lib/logs.dart @@ -1,4 +1,4 @@ -library logs; +library logs_plus; /// Log levels for the logger enum LogLevel { diff --git a/pubspec.yaml b/pubspec.yaml index 37dad94..947df25 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: logs +name: log_plus description: "Small, feature-rich logging package for Dart and Flutter. Written in pure Dart, with no dependencies." version: 0.0.2 homepage: https://github.com/dev-kasibhatla/logs diff --git a/test/logs_test.dart b/test/logs_test.dart index 86fc028..bcb1f5e 100644 --- a/test/logs_test.dart +++ b/test/logs_test.dart @@ -1,4 +1,4 @@ -import 'package:logs/logs.dart'; +import 'package:log_plus/logs.dart'; import 'package:test/test.dart'; void main() {