Skip to content

Commit

Permalink
rename package to log_plus
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-kasibhatla committed Feb 27, 2024
1 parent 611a87e commit 1cc2f81
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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();
Expand All @@ -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(
Expand All @@ -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.
2 changes: 1 addition & 1 deletion example/main.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:logs/logs.dart';
import 'package:log_plus/logs.dart';

void main() {
print(
Expand Down
2 changes: 1 addition & 1 deletion lib/logs.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library logs;
library logs_plus;

/// Log levels for the logger
enum LogLevel {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/logs_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:logs/logs.dart';
import 'package:log_plus/logs.dart';
import 'package:test/test.dart';

void main() {
Expand Down

0 comments on commit 1cc2f81

Please sign in to comment.