├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── config └── config.exs ├── lib ├── configuration.ex ├── configurator.ex ├── logger_papertrail_backend.ex └── logger_papertrail_backend │ ├── configuration_error.ex │ ├── logger.ex │ ├── message_builder.ex │ └── sender.ex ├── mix.exs ├── mix.lock └── test ├── configurator_test.exs ├── logger_papertrail_backend_test.exs ├── logger_test.exs ├── message_builder_test.exs ├── sender_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | /doc 5 | erl_crash.dump 6 | *.ez 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/configuration.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/configuration.ex -------------------------------------------------------------------------------- /lib/configurator.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/configurator.ex -------------------------------------------------------------------------------- /lib/logger_papertrail_backend.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/logger_papertrail_backend.ex -------------------------------------------------------------------------------- /lib/logger_papertrail_backend/configuration_error.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/logger_papertrail_backend/configuration_error.ex -------------------------------------------------------------------------------- /lib/logger_papertrail_backend/logger.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/logger_papertrail_backend/logger.ex -------------------------------------------------------------------------------- /lib/logger_papertrail_backend/message_builder.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/logger_papertrail_backend/message_builder.ex -------------------------------------------------------------------------------- /lib/logger_papertrail_backend/sender.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/lib/logger_papertrail_backend/sender.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/mix.lock -------------------------------------------------------------------------------- /test/configurator_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/configurator_test.exs -------------------------------------------------------------------------------- /test/logger_papertrail_backend_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/logger_papertrail_backend_test.exs -------------------------------------------------------------------------------- /test/logger_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/logger_test.exs -------------------------------------------------------------------------------- /test/message_builder_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/message_builder_test.exs -------------------------------------------------------------------------------- /test/sender_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/sender_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larskrantz/logger_papertrail_backend/HEAD/test/test_helper.exs --------------------------------------------------------------------------------