├── .github └── workflows │ └── dart.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── herbert.xml └── vcs.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── doc ├── screenshot-small.png └── screenshot.png ├── example ├── analysis_options.yaml ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── lib ├── base_remote_appender.dart ├── logging_appenders.dart └── src │ ├── base_appender.dart │ ├── exception_chain.dart │ ├── internal │ ├── ansi.dart │ ├── dummy_logger.dart │ ├── print_appender_default.dart │ └── print_appender_io.dart │ ├── logrecord_formatter.dart │ ├── logrecord_formatter.prefix.dart │ ├── logrecord_formatter.prefix_isolate.dart │ ├── print_appender.dart │ ├── remote │ ├── base_remote_appender.dart │ ├── gelf_http_appender.dart │ ├── logzio_appender.dart │ └── loki_appender.dart │ └── rotating_file_appender.dart ├── pubspec.yaml ├── test ├── exception_chain_test.dart ├── internal │ └── dummy_logger_test.dart ├── logrecord_formatter_test.dart ├── print_appender_test.dart ├── rotating_file_appender_test.dart ├── simple_job_queue_test.dart ├── test_utils.dart ├── test_utils.platform.dart └── test_utils.platform.web.dart └── tool ├── test-analyze.sh └── test-coverage.sh /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/herbert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.idea/dictionaries/herbert.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /doc/screenshot-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/doc/screenshot-small.png -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/base_remote_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/base_remote_appender.dart -------------------------------------------------------------------------------- /lib/logging_appenders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/logging_appenders.dart -------------------------------------------------------------------------------- /lib/src/base_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/base_appender.dart -------------------------------------------------------------------------------- /lib/src/exception_chain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/exception_chain.dart -------------------------------------------------------------------------------- /lib/src/internal/ansi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/internal/ansi.dart -------------------------------------------------------------------------------- /lib/src/internal/dummy_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/internal/dummy_logger.dart -------------------------------------------------------------------------------- /lib/src/internal/print_appender_default.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/internal/print_appender_default.dart -------------------------------------------------------------------------------- /lib/src/internal/print_appender_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/internal/print_appender_io.dart -------------------------------------------------------------------------------- /lib/src/logrecord_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/logrecord_formatter.dart -------------------------------------------------------------------------------- /lib/src/logrecord_formatter.prefix.dart: -------------------------------------------------------------------------------- 1 | String? isolatePrefix() => null; 2 | -------------------------------------------------------------------------------- /lib/src/logrecord_formatter.prefix_isolate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/logrecord_formatter.prefix_isolate.dart -------------------------------------------------------------------------------- /lib/src/print_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/print_appender.dart -------------------------------------------------------------------------------- /lib/src/remote/base_remote_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/remote/base_remote_appender.dart -------------------------------------------------------------------------------- /lib/src/remote/gelf_http_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/remote/gelf_http_appender.dart -------------------------------------------------------------------------------- /lib/src/remote/logzio_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/remote/logzio_appender.dart -------------------------------------------------------------------------------- /lib/src/remote/loki_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/remote/loki_appender.dart -------------------------------------------------------------------------------- /lib/src/rotating_file_appender.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/lib/src/rotating_file_appender.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/exception_chain_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/exception_chain_test.dart -------------------------------------------------------------------------------- /test/internal/dummy_logger_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/internal/dummy_logger_test.dart -------------------------------------------------------------------------------- /test/logrecord_formatter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/logrecord_formatter_test.dart -------------------------------------------------------------------------------- /test/print_appender_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/print_appender_test.dart -------------------------------------------------------------------------------- /test/rotating_file_appender_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/rotating_file_appender_test.dart -------------------------------------------------------------------------------- /test/simple_job_queue_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/simple_job_queue_test.dart -------------------------------------------------------------------------------- /test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/test/test_utils.dart -------------------------------------------------------------------------------- /test/test_utils.platform.dart: -------------------------------------------------------------------------------- 1 | const testIsWeb = false; 2 | -------------------------------------------------------------------------------- /test/test_utils.platform.web.dart: -------------------------------------------------------------------------------- 1 | const testIsWeb = true; 2 | -------------------------------------------------------------------------------- /tool/test-analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/tool/test-analyze.sh -------------------------------------------------------------------------------- /tool/test-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpoul/dart_logging_appenders/HEAD/tool/test-coverage.sh --------------------------------------------------------------------------------