fireproofsocks
I’ve used Logger.metadata before (along the lines of this post), but I’m having some trouble making it work from within a Mix task.
Assuming the following in my config:
config :logger, :console,
level: :debug,
format: "[$level] $message [metadata] $metadata\n",
metadata: [:foo]
and a run/1 function in a custom mix task like so:
def run(opts) do
{:ok, _} = Application.ensure_all_started(:my_app)
Logger.metadata(foo: "XZ")
Logger.info("wtf?")
end
I would expect the log output to be something like this:
08:42:30.012 [info] wtf? [metadata] state=XZ
That’s what I get when I try this inside iex, but instead, it only outputs the message:
08:42:30.012 [info] wtf?
Can someone explain this? Does have something to do with the metadata only applying to the current process?
Thanks, as always!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ityonemo
Mix tasks don’t load config.exs by default, I believe, for performance purposes. You have to load those configurations explicitly if you want them.
fireproofsocks
Would you recommend doing it via
?
kokolegorille
You can set the flag like this too…
fireproofsocks
I still can’t get metadata showing for things I launch via a Mix task…
fireproofsocks
Thanks! Usually I use the simple form like this, but the beauty of calling
Logger.metadata()is that you can establish a context for upcoming log messages before execution is routed deep into functions. It’s especially valuable when you can send log messages with that metadata from functions that don’t have that data in scope. It was a mind-blowing experience for me to discover that Elixir did this – I remember so many code refactors done just to pass variables around for the sake of logging! So it’s frustrating that this isn’t working (yet) in my Mix tasks…benwilson512
Did you try the load config task?
fireproofsocks
Yes, I tried including the
Mix.Task.run("loadconfig")in my Mix task’srun/1function, but the formatting and the metadata config is still ignored.hauleth
mix loadconfigwill not affect runningLogger. Unfortunately @fireproofsocks need to do it “manually” as IIRC there is no option to “reload” application environment.fireproofsocks
Dumb question: how to load config files “manually”? Code — Elixir v1.20.2 ?
hauleth
No. I mean that changes in application environment will not be reflected in logger configuration unless explicitly done so. You need to use
Logger.configure/1to apply configuration.