- Added multi-tenancy attributes & indexes.
Fixing message field.
- More test coverage
- Tests suite, if contributing from older version, run
MIX_ENV=test mix ecto.reset && mix test
just once then can be used justmix test
- Added
schema_prefix
in Log Schema - Changed message field in database to
text
allowing a bigger message to be stored, if needs to use this, please create a migrationalter table(:logs) do modify(:message, :text) end
- Bumped elixir version to 1.15
- Fixes https://github.com/er-jpg/logger_psql/issues/1, allowing messages other than string to be inserted
- Typos in documentation
- Fixed if in config prefix was set to an empty string, it would fail
Publish and improvements to initial usage and implementation.
- Added task to create migration for the developer
- Possibility to add a prefix
Initial Release of the package.
- Initial implementation of the logger backend, adding the possibility to store logs into PostgreSQL
- Added credo code lint
- Added License