├── .gitignore ├── .history ├── pubspec_20181216190827.yaml └── pubspec_20181216190920.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── simple_logger_example.dart ├── lib ├── simple_logger.dart └── src │ ├── log_info.dart │ └── simple_logger.dart ├── pubspec.yaml └── test └── simple_logger_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.history/pubspec_20181216190827.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/.history/pubspec_20181216190827.yaml -------------------------------------------------------------------------------- /.history/pubspec_20181216190920.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/.history/pubspec_20181216190920.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:pedantic_mono/analysis_options.yaml -------------------------------------------------------------------------------- /example/simple_logger_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/example/simple_logger_example.dart -------------------------------------------------------------------------------- /lib/simple_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/lib/simple_logger.dart -------------------------------------------------------------------------------- /lib/src/log_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/lib/src/log_info.dart -------------------------------------------------------------------------------- /lib/src/simple_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/lib/src/simple_logger.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/simple_logger_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/simple_logger/HEAD/test/simple_logger_test.dart --------------------------------------------------------------------------------