fireproofsocks

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!

Showing Posts 1 to 10

ityonemo

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

fireproofsocks OP

Would you recommend doing it via

Mix.Task.run("loadconfig")

?

kokolegorille

kokolegorille

You can set the flag like this too…

Logger.info("wtf?", foo: "XZ")
fireproofsocks

fireproofsocks OP

I still can’t get metadata showing for things I launch via a Mix task…

fireproofsocks

fireproofsocks OP

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

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Did you try the load config task?

fireproofsocks

fireproofsocks OP

Yes, I tried including the Mix.Task.run("loadconfig") in my Mix task’s run/1 function, but the formatting and the metadata config is still ignored.

hauleth

hauleth

mix loadconfig will not affect running Logger. Unfortunately @fireproofsocks need to do it “manually” as IIRC there is no option to “reload” application environment.

fireproofsocks

fireproofsocks OP

Dumb question: how to load config files “manually”? Code — Elixir v1.20.2 ?

hauleth

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/1 to apply configuration.

Where Next? Top

Trending in Questions Top

RSP87
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
kszambelanczyk
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
RemyXRenard
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
velrest
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
samoloth
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
nseaSeb
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews