summaryrefslogtreecommitdiffstats
path: root/_build/static/archives/extend/2013-May/000149.html
blob: 1fdc9b9ed64db4968be8838b796bbf0a2f5cf40f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
 <HEAD>
   <TITLE> [99s-extend] REALLY SOLVED -- Re: SOLVED -- Re: &quot;access.log&quot; for Cowboy
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20REALLY%20SOLVED%20--%20Re%3A%20SOLVED%20--%20Re%3A%20%22access.log%22%0A%20for%20Cowboy&In-Reply-To=%3CCDBFE88D.BC24%25kevin.brown%40turner.com%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <style type="text/css">
       pre {
           white-space: pre-wrap;       /* css-2.1, curent FF, Opera, Safari */
           }
   </style>
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="000142.html">
   <LINK REL="Next"  HREF="000143.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[99s-extend] REALLY SOLVED -- Re: SOLVED -- Re: &quot;access.log&quot; for Cowboy</H1>
    <B>Brown, Kevin</B> 
    <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20REALLY%20SOLVED%20--%20Re%3A%20SOLVED%20--%20Re%3A%20%22access.log%22%0A%20for%20Cowboy&In-Reply-To=%3CCDBFE88D.BC24%25kevin.brown%40turner.com%3E"
       TITLE="[99s-extend] REALLY SOLVED -- Re: SOLVED -- Re: &quot;access.log&quot; for Cowboy">Kevin.Brown at turner.com
       </A><BR>
    <I>Mon May 20 20:54:20 CEST 2013</I>
    <P><UL>
        <LI>Previous message: <A HREF="000142.html">[99s-extend] REALLY SOLVED -- Re: SOLVED -- Re: &quot;access.log&quot; for Cowboy
</A></li>
        <LI>Next message: <A HREF="000143.html">[99s-extend] question to rest handler
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#149">[ date ]</a>
              <a href="thread.html#149">[ thread ]</a>
              <a href="subject.html#149">[ subject ]</a>
              <a href="author.html#149">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Would there be any interest in an access_combined log format?

<A HREF="http://httpd.apache.org/docs/2.2/logs.html">http://httpd.apache.org/docs/2.2/logs.html</A>



On 5/15/13 9:47 AM, &quot;Ivan Uemlianin&quot; &lt;<A HREF="https://lists.ninenines.eu/listinfo/extend">ivan at llaisdy.com</A>&gt; wrote:

&gt;<i>Thanks!  That works for me too: it was the &quot;{level, none}&quot; that did it.
</I>&gt;<i>(I've also spruced up my syntax for lager 2.*)
</I>&gt;<i>
</I>&gt;<i>Thanks for your help and patience.
</I>&gt;<i>
</I>&gt;<i>Ivan
</I>&gt;<i>
</I>&gt;<i>
</I>&gt;<i>On 15/05/2013 14:33, Adam Rutkowski wrote:
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> On 15 May 2013, at 14:43, Ivan Uemlianin wrote:
</I>&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> Thanks for this.  I've tried it.  It seems to be adding a trace to an
</I>&gt;&gt;&gt;<i>already existing log file (which is already handling log messagse of a
</I>&gt;&gt;&gt;<i>certain level).  e.g., it uses lager:trace not lager:trace_file.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> I can't set it up so the trace file receives *only* trace messages.
</I>&gt;&gt;&gt;<i>I'l revert to the lager:trace_file call.
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> The following setup works for me:
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> [
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> {lager, [
</I>&gt;&gt;<i>      {colored, true},
</I>&gt;&gt;<i>      {handlers, [
</I>&gt;&gt;<i>        {lager_console_backend, info},
</I>&gt;&gt;<i>        {lager_file_backend, [
</I>&gt;&gt;<i>                  {file, &quot;log/error.log&quot;}, {level, error}, {size,
</I>&gt;&gt;<i>10485760}, {date, &quot;$D0&quot;}, {count, 5}]},
</I>&gt;&gt;<i>        {lager_file_backend, [
</I>&gt;&gt;<i>                  {file, &quot;log/cdr.log&quot;}, {level, none}, {size, 1000},
</I>&gt;&gt;<i>{date, &quot;$D0&quot;}, {count, 5}]}
</I>&gt;&gt;<i>        ]},
</I>&gt;&gt;<i>      {crash_log, &quot;log/crash.log&quot;},
</I>&gt;&gt;<i>
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> {traces,
</I>&gt;&gt;<i> [
</I>&gt;&gt;<i> {{lager_file_backend, &quot;log/cdr.log&quot;}, [{type, cdr}], debug}
</I>&gt;&gt;<i> ]}
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> ]}
</I>&gt;&gt;<i>
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> ].
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> Hope it helps, take care.
</I>&gt;&gt;<i> A.
</I>&gt;&gt;<i>
</I>&gt;<i>
</I>&gt;<i>-- 
</I>&gt;<i>============================================================
</I>&gt;<i>Ivan A. Uemlianin PhD
</I>&gt;<i>Llaisdy
</I>&gt;<i>Speech Technology Research and Development
</I>&gt;<i>
</I>&gt;<i>                     <A HREF="https://lists.ninenines.eu/listinfo/extend">ivan at llaisdy.com</A>
</I>&gt;<i>                      www.llaisdy.com
</I>&gt;<i>                          llaisdy.wordpress.com
</I>&gt;<i>               github.com/llaisdy
</I>&gt;<i>                      www.linkedin.com/in/ivanuemlianin
</I>&gt;<i>
</I>&gt;<i>                         festina lente
</I>&gt;<i>============================================================
</I>&gt;<i>_______________________________________________
</I>&gt;<i>Extend mailing list
</I>&gt;<i><A HREF="https://lists.ninenines.eu/listinfo/extend">Extend at lists.ninenines.eu</A>
</I>&gt;<i><A HREF="http://lists.ninenines.eu:81/listinfo/extend">http://lists.ninenines.eu:81/listinfo/extend</A>
</I>&gt;<i>
</I>


</PRE>

<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="000142.html">[99s-extend] REALLY SOLVED -- Re: SOLVED -- Re: &quot;access.log&quot; for Cowboy
</A></li>
	<LI>Next message: <A HREF="000143.html">[99s-extend] question to rest handler
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#149">[ date ]</a>
              <a href="thread.html#149">[ thread ]</a>
              <a href="subject.html#149">[ subject ]</a>
              <a href="author.html#149">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend
mailing list</a><br>
</body></html>