<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="326290" data-post-id="326290">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="linusdm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/120/30659_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  linusdm
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>FWIW, I think your original problem is solved by adding <code>:payload</code> to the list of metadata values. I tried in a new mix project (with <code>mix new</code>), and the log output contained the payload as expected.</p>
<p>I think the <code>Mix.install/2</code> version doesn’t work, because the Logger config you’re trying to set is part of the <a href="https://hexdocs.pm/logger/Logger.html#module-boot-configuration" rel="noopener nofollow ugc">boot configuration</a> (which is different from the <a href="https://hexdocs.pm/logger/Logger.html#module-compile-configuration" rel="noopener nofollow ugc">compile configuration</a>). Both can be set in <code>config/config.exs</code>, but I don’t know how that works with the <code>Mix.install/2</code> way of configuring things. Maybe that’s just too late to influence the Logger’s boot configuration.</p>
<p>I’ve actually never thought about this “boot configuration” aspect of an Elixir app. So if anyone can chime in… Please do!</p>
<p>PS: just to be clear, this is the config that works, defined in <code>config/config.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir"># config/config.exs (or config/dev.exs)
config :logger, :console, # :default_handler also works
  format: "[$level] $message $metadata\n",
  metadata: [:payload]

# iex
require Logger
Logger.info("some message", payload: "some payload")

# &gt; [info] some message payload=some payload
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326290" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/12">Post #11</a>
	                </div>
	            </div>
              <div id="likers-container-326290" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326290"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #11"></div>
  </section>
</div>
    <div class="postbit" id="326297" data-post-id="326297">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="LostKobrakai" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/LostKobrakai/120/3072_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  LostKobrakai
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>What you described is exatly the reason. The issue here is simply the chick-egg dance of starting a beam VM:</p>
<p>Basically all code on the beam kinda wants the the logger to be running. Therefore it is started as soon as possible by the <code>:kernel</code> application, which is always the first application to start on an the beam (even directly bootstrapped by the vm iirc, see <a href="https://www.youtube.com/watch?v=_AqmxltiV9I" rel="nofollow">https://www.youtube.com/watch?v=_AqmxltiV9I</a>). So at that point where <code>:kernel</code> is starting the logger it needs to setup the default handler and its formatting. Essentially no custom code has run yet. I’m not even sure <code>config/runtime.exs</code> is executed early enough in an release startup to configure the logger.</p>
<p>Therefore setting configuration with <code>Mix.install</code> doesn’t help. At that point the default handler is already running and configured from the app env. One would need to use the runtime APIs to adjust the formatter config, as there’s no code watching the app env for changes.</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">:logger.update_formatter_config(:default, %{metadata: [:payload, :application]})
</code></pre>
<p>(use <code>:livebook_gl_handler</code> instead of <code>:default</code> in livebook)</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326297" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/13">Post #12</a>
	                </div>
	            </div>
              <div id="likers-container-326297" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326297"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-solved cat-solved" title="Marked as solution"></div>
  </section>
</div>
    <div class="postbit" id="326352" data-post-id="326352">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="linusdm" data-post="12" data-topic="63159">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/48/30659_2.png" class="avatar"> linusdm:</div>
<blockquote>
<p>FWIW, I think your original problem is solved by adding <code>:payload</code> to the list of metadata values. I tried in a new mix project (with <code>mix new</code>), and the log output contained the payload as expected.</p>
</blockquote>
</aside>
<p>Alright, the mystery is not entirely solved.</p>
<p>This is my <code>config/dev.exs</code> (I swapped the place of <code>$message</code> and <code>$metadata</code> btw):</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :logger, :default_handler, level: :all

config :logger, :default_formatter,
  format: "$time $level $metadata $message\n",
  metadata: [:payload]
</code></pre>
<p>Indeed I can just do this in <code>iex</code> now:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">iex(1)&gt; require Logger
Logger
iex(2)&gt; Logger.error("play", payload: "stuff")
22:15:33.804 error payload=stuff  play
:ok
</code></pre>
<p>But from within one of my modules I still can’t make it work (the format is respected btw, no more square brackets etc. but no metadata). Any suggestions? I should probably start by <code>IO.inspect</code>-ing <code>Logger.metadata()</code>, I suppose.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326352" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/14">Post #13</a>
	                </div>
	            </div>
              <div id="likers-container-326352" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326352"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #13"></div>
  </section>
</div>
    <div class="postbit" id="326354" data-post-id="326354">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p><code>Logger.metadata()</code> is an empty list btw – <code>[]</code>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326354" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/15">Post #14</a>
	                </div>
	            </div>
              <div id="likers-container-326354" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326354"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #14"></div>
  </section>
</div>
    <div class="postbit" id="326356" data-post-id="326356">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="linusdm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/120/30659_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  linusdm
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>There is not much to inspect, I’m afraid. Whatever you pass in as a keyword list with the Logger call will be in your metadata.</p>
<p>Is this a Phoenix app? Are you running with mix, and is your mix-env set to <code>dev</code>?</p>
<p>Does it behave differently when you call that module function from iex, as opposed to from within your application?</p>
<p>Running <code>:logger.get_config()</code> reveals the current config. Somewhere in that datastructure I find the metadata and format keys, which should reflect your config.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326356" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/16">Post #15</a>
	                </div>
	            </div>
              <div id="likers-container-326356" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326356"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #15"></div>
  </section>
</div>
    <div class="postbit" id="326357" data-post-id="326357">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="linusdm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/120/30659_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  linusdm
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>That’s to be expected. You can add metadata that is associated with the current process, using <code>Logger.metadata/1</code>. Whatever you pass in with <code>Logger.error/2</code> as a second parameter will <em>add</em> to that metadata. But that “base” metadata can be anything, and by default is probably rightfully so an empty list.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326357" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/17">Post #16</a>
	                </div>
	            </div>
              <div id="likers-container-326357" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326357"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #16"></div>
  </section>
</div>
    <div class="postbit" id="326358" data-post-id="326358">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Hrm, I just used <a class="mention" href="/u/lostkobrakai" rel="nofollow">@LostKobrakai</a>’s recommendation and put this in my <code>application.ex</code> after loading config. We have a bespoke mechanism of loading stuff and it’s heavily dependent on the way we deploy apps so that was probably the reason. And one I admit I don’t care much to pursue.</p>
<p>So for posterity for both of you and future readers, do this if you have my problem:</p>
<pre data-code-wrap="diff"><code class="lang-diff">defmodule YourApp.Application do
  use Application
  require Logger

  @impl Application
  def start(_type, _args) do
    config = load_config() # our custom stuff.

+    :logger.update_formatter_config(:default, %{metadata: [:payload, :application]})

    children = [
      # The app's children go here.
    ]

    opts = [strategy: :one_for_one, name: Facteur.Supervisor]
    Supervisor.start_link(children, opts)
  end
end
</code></pre>
<p>And you are on your merry way. (Obviously replace <code>[:payload, :application]</code> with whatever <code>metadata</code> you want to be able to pass to your <code>Logger</code> and for it to be visible.)</p>
<p>EDIT: spoke too soon, read below.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326358" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/18">Post #17</a>
	                </div>
	            </div>
              <div id="likers-container-326358" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326358"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #17"></div>
  </section>
</div>
    <div class="postbit" id="326359" data-post-id="326359">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="linusdm" data-post="16" data-topic="63159">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/48/30659_2.png" class="avatar"> linusdm:</div>
<blockquote>
<p>Is this a Phoenix app? Are you running with mix, and is your mix-env set to <code>dev</code>?</p>
</blockquote>
</aside>
<p>Yes and yes.</p>
<aside class="quote no-group" data-username="linusdm" data-post="17" data-topic="63159" data-full="true">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/48/30659_2.png" class="avatar"> linusdm:</div>
<blockquote>
<p>That’s to be expected. You can add metadata that is associated with the current process, using <code>Logger.metadata/1</code>. Whatever you pass in with <code>Logger.error/2</code> as a second parameter will <em>add</em> to that metadata. But that “base” metadata can be anything, and by default is probably rightfully so an empty list.</p>
</blockquote>
</aside>
<p>Yeah, I was just wondering if some of the app’s dependencies doesn’t do something under the hood is all. Turns out they don’t.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326359" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/19">Post #18</a>
	                </div>
	            </div>
              <div id="likers-container-326359" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326359"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #18"></div>
  </section>
</div>
    <div class="postbit" id="326361" data-post-id="326361">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>OK I am definitely having a Saturday moment and spoke too soon without scanning properly. The <code>application</code> key got printed, the <code>payload</code> thing didn’t. <img src="https://forum.elixirforum.com/uploads/default/original/2X/6/6c3193d1dd46244da3c8c6f719c9f5e2abdd5ae8.gif?v=15" title=":003:" class="emoji emoji-custom" alt=":003:" loading="lazy" width="20" height="20"></p>
<p>Still leaving <a class="mention" href="/u/lostkobrakai" rel="nofollow">@LostKobrakai</a>’s comment as the solution since it achieved partial success but the search goes on.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326361" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/20">Post #19</a>
	                </div>
	            </div>
              <div id="likers-container-326361" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326361"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #19"></div>
  </section>
</div>
    <div class="postbit" id="326363" data-post-id="326363">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="linusdm" data-post="12" data-topic="63159">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/linusdm/48/30659_2.png" class="avatar"> linusdm:</div>
<blockquote>
<p>I tried in a new mix project (with <code>mix new</code>), and the log output contained the payload as expected.</p>
</blockquote>
</aside>
<p>Just did the same and it worked. I am getting serious now and stopping to just screw around and will find what in our bespoke config loading is causing this. It’ll likely be as simple as just putting <code>Application.put_env(:our_app, :logger)</code> but let’s see.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="326363" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/how-can-i-see-log-metadata-in-dev/63159/21">Post #20</a>
	                </div>
	            </div>
              <div id="likers-container-326363" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="326363"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #20"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/63159/load_more?page=3">Load more posts (5 remaining)</a>
</div></template></turbo-stream>