Install Error Tracker to track production issues

This commit is contained in:
Claudio Ortolina
2025-01-01 17:11:17 +00:00
parent 8bd7197d18
commit 5cd57fdde4
7 changed files with 26 additions and 1 deletions
+6 -1
View File
@@ -123,7 +123,7 @@ msgstr ""
msgid "Login"
msgstr ""
#: lib/music_library_web/components/layouts/app.html.heex:29
#: lib/music_library_web/components/layouts/app.html.heex:32
#, elixir-autogen, elixir-format
msgid "Logout"
msgstr ""
@@ -514,3 +514,8 @@ msgstr ""
#, elixir-autogen, elixir-format
msgid "A->Z"
msgstr ""
#: lib/music_library_web/components/layouts/app.html.heex:29
#, elixir-autogen, elixir-format
msgid "Errors"
msgstr ""
@@ -0,0 +1,7 @@
defmodule MusicLibrary.Repo.Migrations.AddErrorTracker do
use Ecto.Migration
def up, do: ErrorTracker.Migration.up(version: 4)
# We specify `version: 1` in `down`, to ensure we remove all migrations.
def down, do: ErrorTracker.Migration.down(version: 1)
end