You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#{Enum.map_join(extra_found_triggers,"\n",fntrigger_details->"\"#{trigger_details.name}\" in the table \"#{trigger_details.table_schema}\".\"#{trigger_details.table_name}\""end)}
49
+
:ok
50
+
end
44
51
45
-
...but they were not specified in the watcher options.
52
+
defplog_extra_triggers(extra_found_triggers)do
53
+
Logger.error("""
54
+
Found the following extra EctoWatch triggers:
46
55
47
-
To cleanup unspecified triggers and functions, run your app with the `ECTO_WATCH_CLEANUP`
48
-
environment variable set to the value `cleanup`
49
-
""")
56
+
#{Enum.map_join(extra_found_triggers,"\n",fntrigger_details->"\"#{trigger_details.name}\" in the table \"#{trigger_details.table_schema}\".\"#{trigger_details.table_name}\""end)}
50
57
51
-
Logger.error("""
52
-
Found the following extra EctoWatch functions:
58
+
...but they were not specified in the watcher options.
53
59
54
-
#{Enum.map_join(extra_found_functions,"\n",fnfunction_details->"\"#{function_details.name}\" in the schema \"#{function_details.schema}\""end)}
60
+
To cleanup unspecified triggers and functions, run your app with the `ECTO_WATCH_CLEANUP`
61
+
environment variable set to the value `cleanup`
62
+
""")
63
+
end
55
64
56
-
To cleanup unspecified triggers and functions, run your app with the `ECTO_WATCH_CLEANUP`
57
-
environment variable set to the value `cleanup`
58
-
""")
59
-
end
60
-
end)
65
+
defplog_extra_functions(extra_found_functions)do
66
+
Logger.error("""
67
+
Found the following extra EctoWatch functions:
61
68
62
-
:ok
69
+
#{Enum.map_join(extra_found_functions,"\n",fnfunction_details->"\"#{function_details.name}\" in the schema \"#{function_details.schema}\""end)}
70
+
71
+
To cleanup unspecified triggers and functions, run your app with the `ECTO_WATCH_CLEANUP`
0 commit comments