Dear Everyone,<br><br>I am running WSGI inside my twisted server. I am currently using startLogging, but I am interested in separating the two sources of logs into different destinations, i.e. different log files. Take a look at my log:<br>
<br>2010-08-17 00:20:19-0400 [-] Log opened./<br>2010-08-17 00:20:19-0400 [-] twisted.web.server.Site starting on 11111<br>2010-08-17 00:20:19-0400 [-] Starting factory &lt;twisted.web.server.Site instance at 0x1e65b00&gt;<br>
2010-08-17 00:20:19-0400 [-] mycode.code.comet.ProxiedComet.ProxiedCometFactory starting on 12346<br>2010-08-17 00:20:19-0400 [-] Starting factory &lt;mycode.code.comet.ProxiedComet.ProxiedCometFactory instance at 0x1e65e18&gt;<br>
2010-08-16 23:20:39-0500 [-] 127.0.0.1 - - [17/Aug/2010:04:20:38 +0000] &quot;GET / HTTP/1.1&quot; 404 2666 &quot;-&quot; &quot;Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8&quot;<br>
2010-08-16 23:20:39-0500 [-] 127.0.0.1 - - [17/Aug/2010:04:20:39 +0000] &quot;GET /favicon.ico HTTP/1.1&quot; 404 2699 &quot;-&quot; &quot;Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8&quot;<br>
2010-08-16 23:20:42-0500 [-] 127.0.0.1 - - [17/Aug/2010:04:20:42 +0000] &quot;GET /favicon.ico HTTP/1.1&quot; 404 2699 &quot;-&quot; &quot;Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8&quot;<br>
<br>First 5 lines are  twisted&#39;s , remaining are my WSGI *running django. How should I structure my logging to be able to split accordingly?<br><br><br>Victor<br><br>