Hmm, are there any plans to make this easier for a user to change via the config?? Almost every other daemon I know has support for this, so it makes RabbitMQ terribly unfriendly :(<br><br><div class="gmail_quote">On Thu, Jun 23, 2011 at 3:38 PM, Matthew Sackman <span dir="ltr">&lt;<a href="mailto:matthew@rabbitmq.com">matthew@rabbitmq.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div></div><div class="h5">On Thu, Jun 23, 2011 at 03:34:20PM +0100, Cal Leeming [Simplicity Media Ltd] wrote:<br>

&gt; So my server died a horrible death when all the disk space was used due to<br>
&gt; this:<br>
&gt;<br>
&gt; �root@mysql01 [/var/log/rabbitmq] &gt; ls -lah<br>
&gt; total 38G<br>
&gt; drwxr-xr-x �2 sshd ssh �4.0K Jun 19 07:25 .<br>
&gt; drwxr-xr-x 10 root root 4.0K Jun 23 07:25 ..<br>
&gt; -rw-r--r-- �1 sshd ssh � 38G Jun 23 01:45 rabbit@mysql01.log<br>
&gt;<br>
&gt; �root@mysql01 [/var/log/rabbitmq] &gt; head rabbit@mysql01.log -n 2<br>
&gt;<br>
&gt; =INFO REPORT==== 19-Jun-2011::06:25:19 ===<br>
&gt;<br>
&gt; So, is there any way to actually stop those &quot;INFO REPORT&quot; messages from<br>
&gt; being logged, but keep the error logs? I saw the thing about patching the<br>
&gt; start up scripts (but that disables all logging, including errors, and seems<br>
&gt; terribly hacky :S)<br>
<br>
</div></div>I&#39;m afraid there&#39;s no solution to this atm merely by configuration. If<br>
you&#39;re happy compiling from source then in rabbit_log.erl, you should<br>
find some lines:<br>
<br>
handle_cast({info, Fmt}, State) -&gt;<br>
 � �error_logger:info_msg(Fmt),<br>
 � �{noreply, State};<br>
handle_cast({info, Fmt, Args}, State) -&gt;<br>
 � �error_logger:info_msg(Fmt, Args),<br>
 � �{noreply, State};<br>
<br>
<br>
If you just entirely remove the error_logger:info_msg lines and<br>
recompile then you&#39;ll lose info messages (you&#39;ll get warnings when<br>
compiling about unused vars, but don&#39;t worry about that).<br>
<br>
Matthew<br>
_______________________________________________<br>
rabbitmq-discuss mailing list<br>
<a href="mailto:rabbitmq-discuss@lists.rabbitmq.com">rabbitmq-discuss@lists.rabbitmq.com</a><br>
<a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
</blockquote></div><br>