diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d0f2cd..2ca7bfb 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.0.60 + +- New Version 0.0.60 + + ## 0.0.59 - New Version 0.0.59 diff --git a/lib/log/log.dart b/lib/log/log.dart index f915c7d..d82930a 100644 --- a/lib/log/log.dart +++ b/lib/log/log.dart @@ -102,7 +102,8 @@ class GeneralLibraryLogOptions { if (logOptions != null) { return copyWith( textTitle: valueStringSetIfEmptReturnNull(value: logOptions.textTitle), - textContext: valueStringSetIfEmptReturnNull(value: logOptions.textContext), + textContext: + valueStringSetIfEmptReturnNull(value: logOptions.textContext), ); } return this; @@ -142,7 +143,8 @@ class GeneralLibraryLog { }); /// GeneralLibraryLog - static final bool _isCanPrintToTerminal = Dart.executable_type == ExecutableType.cli; + static final bool _isCanPrintToTerminal = + Dart.executable_type == ExecutableType.cli; /// GeneralLibraryLog FutureOr printToTerminal({ @@ -157,8 +159,8 @@ class GeneralLibraryLog { print(Trace.from(logMessage.stackTrace).terse.toString()); } final GeneralLibraryLogOptions logOptions = this.logOptions.patchWith( - logOptions: logMessage.logOptions, - ); + logOptions: logMessage.logOptions, + ); print(""" • 🆔 Title: ${logOptions.textTitle} • 📍 Context: ${logOptions.textContext} diff --git a/pubspec.yaml b/pubspec.yaml index a5b6ea1..274a0dc 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: 'general_lib' description: 'All in one library for help you make easy app on cross platform and support server side, inclue tcp, fetch, event emitter, websocket, and more.' -version: '0.0.59' +version: '0.0.60' environment: sdk: '>=3.6.0 <4.0.0' dev_dependencies: