<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>log4php-user@logging.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/"/>
<id>http://mail-archives.apache.org/mod_mbox/logging-log4php-user/</id>
<updated>2013-05-21T11:52:55Z</updated>
<entry>
<title>Re: Configuration in PHP format</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3cCAKpWnhQCtbwC_SH0-65eTRqx-FPMdy5wGOq7if7HDGc4VtL9Wg@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhQCtbwC_SH0-65eTRqx-FPMdy5wGOq7if7HDGc4VtL9Wg@mail-gmail-com%3e</id>
<updated>2013-03-14T10:27:40Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 14 March 2013 09:04, Gunnar Lindholm&#010;&lt;gunnar.lindholm@mobileloyalty.com&gt; wrote:&#010;&gt; Yes, its acctually a simple case.&#010;&gt;&#010;&gt; I want to be able to load two different loggers&#010;&gt;&#010;&gt; $loggerFoo = Logger::getLogger('foo');&#010;&gt; $loggerBar = Logger::getLogger('bar');&#010;&gt;&#010;&gt; and they should write to different files.&#010;&gt;&#010;&gt; I have a file with rootLogger defined, but I'd like to define these two&#010;&gt; foo/bar loggers also.&#010;&gt;&#010;&gt; Any help would be greatly appreciated.&#010;&gt; Thank you.&#010;&gt;&#010;&#010;Hi Gunnar,&#010;&#010;Check out this config file:&#010;&#010;&lt;configuration xmlns="http://logging.apache.org/log4php/"&gt;&#010;    &lt;appender name="app1" class="LoggerAppenderFile"&gt;&#010;        &lt;param name="file" value="foo.log" /&gt;&#010;    &lt;/appender&gt;&#010;&#010;    &lt;appender name="app2" class="LoggerAppenderFile"&gt;&#010;        &lt;param name="file" value="bar.log" /&gt;&#010;    &lt;/appender&gt;&#010;&#010;    &lt;logger name="logger1"&gt;&#010;        &lt;appender_ref ref="app1" /&gt;&#010;    &lt;/logger&gt;&#010;&#010;    &lt;logger name="logger2"&gt;&#010;        &lt;appender_ref ref="app2" /&gt;&#010;    &lt;/logger&gt;&#010;&lt;/configuration&gt;&#010;&#010;&#010;First, there's 2 appenders, each logs to it's own file:&#010;- appender "app1" logs to foo.log&#010;- appender "app2" logs to bar.log&#010;&#010;Then I set up 2 loggers:&#010;- logger "logger1" is linked to appender "app1", and therefore will&#010;log to foo.log&#010;- logger "logger2" is linked to appender "app2", and therefore will&#010;log to bar.log&#010;&#010;Try it out by running something like:&#010;Logger::getLogger('logger1')-&gt;info('this is logger1');&#010;Logger::getLogger('logger2')-&gt;info('this is logger2');&#010;&#010;Note that in this configuration the root logger is not linked to any&#010;appender. Since loggers inherit appenders from the root logger, any&#010;loggers apart from logger1 and logger2 will not log anything since&#010;they have no appenders of their own, and no inherited appenders.&#010;&#010;To fix that, configure the root logger to log somewhere (for example&#010;file "baz.log"). Here's the new config:&#010;&#010;&lt;configuration xmlns="http://logging.apache.org/log4php/"&gt;&#010;    &lt;appender name="app1" class="LoggerAppenderFile"&gt;&#010;        &lt;param name="file" value="foo.log" /&gt;&#010;    &lt;/appender&gt;&#010;&#010;    &lt;appender name="app2" class="LoggerAppenderFile"&gt;&#010;        &lt;param name="file" value="bar.log" /&gt;&#010;    &lt;/appender&gt;&#010;&#010;    &lt;appender name="app3" class="LoggerAppenderFile"&gt;&#010;        &lt;param name="file" value="baz.log" /&gt;&#010;    &lt;/appender&gt;&#010;&#010;    &lt;logger name="logger1" additivity="false"&gt;&#010;        &lt;appender_ref ref="app1" /&gt;&#010;    &lt;/logger&gt;&#010;&#010;    &lt;logger name="logger2"&gt;&#010;        &lt;appender_ref ref="app2" /&gt;&#010;    &lt;/logger&gt;&#010;&#010;    &lt;root&gt;&#010;        &lt;appender_ref ref="app3" /&gt;&#010;    &lt;/root&gt;&#010;&lt;/configuration&gt;&#010;&#010;It adds a new appender to log to baz.log and links it to the root logger.&#010;&#010;Note that logger1 and logger2 will also inherit app3 from the root&#010;logger, which means they will also log to baz.log, as well as their&#010;own file (foo.log or bar.log). You can prevent that by turning off&#010;their additivity, like this:&#010;&#010;&lt;logger name="logger1" additivity="false"&gt;&#010;    &lt;appender_ref ref="app1" /&gt;&#010;&lt;/logger&gt;&#010;&#010;Try it out, let me know if it solves your problem or if you have any&#010;further questions.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Configuration in PHP format</title>
<author><name>Gunnar Lindholm &lt;gunnar.lindholm@mobileloyalty.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3c514184A1.8050804@mobileloyalty.com%3e"/>
<id>urn:uuid:%3c514184A1-8050804@mobileloyalty-com%3e</id>
<updated>2013-03-14T08:04:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
2013-03-13 21:52, Ivan Habunek skrev:&#010;&gt; On 13 March 2013 20:49, Gunnar Lindholm&#010;&gt; &lt;gunnar.lindholm@mobileloyalty.com&gt; wrote:&#010;&gt;&gt; I wonder if you could add some more complex example of a configuration&#010;&gt;&gt; made in PHP?&#010;&gt;&gt;&#010;&gt;&gt; It is not obvious how to write a configuration with loggers that you&#010;&gt;&gt; give explicit names.&#010;&gt;&#010;&gt; I'm aware of that, and have been meaning to write up better examples&#010;&gt; but I haven't had much time recently to work on the project recently.&#010;&gt; Do you have something specific that you want to accomplish? Maybe I&#010;&gt; can help you there.&#010;&#010;&#010;Hi.&#010;&#010;Yes, its acctually a simple case.&#010;&#010;I want to be able to load two different loggers&#010;&#010;$loggerFoo = Logger::getLogger('foo');&#010;$loggerBar = Logger::getLogger('bar');&#010;&#010;and they should write to different files.&#010;&#010;I have a file with rootLogger defined, but I'd like to define these two &#010;foo/bar loggers also.&#010;&#010;Any help would be greatly appreciated.&#010;Thank you.&#010;&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Configuration in PHP format</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3cCAKpWnhQz1YCSA1vwDmQMUunz3dCsUoRaFV2QdOz7VkH-NHSOEw@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhQz1YCSA1vwDmQMUunz3dCsUoRaFV2QdOz7VkH-NHSOEw@mail-gmail-com%3e</id>
<updated>2013-03-13T20:52:10Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 13 March 2013 20:49, Gunnar Lindholm&#010;&lt;gunnar.lindholm@mobileloyalty.com&gt; wrote:&#010;&gt; I wonder if you could add some more complex example of a configuration&#010;&gt; made in PHP?&#010;&gt;&#010;&gt; It is not obvious how to write a configuration with loggers that you&#010;&gt; give explicit names.&#010;&#010;I'm aware of that, and have been meaning to write up better examples&#010;but I haven't had much time recently to work on the project recently.&#010;Do you have something specific that you want to accomplish? Maybe I&#010;can help you there.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Configuration in PHP format</title>
<author><name>Gunnar Lindholm &lt;gunnar.lindholm@mobileloyalty.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3c5140D840.40102@mobileloyalty.com%3e"/>
<id>urn:uuid:%3c5140D840-40102@mobileloyalty-com%3e</id>
<updated>2013-03-13T19:49:20Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi.&#010;&#010;I wonder if you could add some more complex example of a configuration&#010;made in PHP?&#010;&#010;It is not obvious how to write a configuration with loggers that you&#010;give explicit names.&#010;&#010;Thanks in advance&#010;Gunnar.&#010;&#010;&#010;&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: custom file:line column entries</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3cCAKpWnhRe=kyHBx+QYHPoNQ4Jx0V9vzFzv8ityrm8s78U6eOjbw@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhRe=kyHBx+QYHPoNQ4Jx0V9vzFzv8ityrm8s78U6eOjbw@mail-gmail-com%3e</id>
<updated>2013-03-07T07:23:02Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 5 March 2013 19:05, David Coombes &lt;webeire@gmail.com&gt; wrote:&#010;&gt; I have a method in a class that calls Logger::info() The issue is the&#010;&gt; file:line column in the html appender will always report my helper method&#010;&gt; and not the calling file:line. Using php's debug_backtrace I can get the&#010;&gt; calling file:line but can't see how I can dynamically change the column. Is&#010;&gt; this possible, or is there a Logger::method() that I need to overwrite?&#010;&#010;Hi!&#010;&#010;Currently it's not possible to override the location information.&#010;There is a hackish way of doing this, but you have to modify log4php&#010;code.&#010;&#010;Add this method to LoggerLoggingEvent class (located in /src/main/php/):&#010;public function setLocationInformation(LoggerLocationInfo $locationInfo) {&#010;    $this-&gt;locationInfo = $locationInfo;&#010;}&#010;&#010;And then do this:&#010;&#010;public function log($msg, $level = "info")&#010;{&#010;    // Manually construct a logging event&#010;    $level = LoggerLevel::toLevel($level);&#010;    $logger = Logger::getLogger(__CLASS__);&#010;    $event = new LoggerLoggingEvent(__CLASS__, $logger, $level, $msg);&#010;&#010;    // Override the location info&#010;    $bt = debug_backtrace();&#010;    $caller = array_shift($bt);&#010;    $location = new LoggerLocationInfo($caller);&#010;    $event-&gt;setLocationInformation($location);&#010;&#010;    // Log it&#010;    $logger-&gt;logEvent($event);&#010;}&#010;&#010;Just tried it out. Seems to work fine. Let me know how it works.&#010;&#010;I will add LoggerLoggingEvent::setLocationInformation() to the develop&#010;branch so it will be included in next release.&#010;&#010;Looking at the HTML layout... man, it's really outdated. Still has&#010;Category instead of Logger, and other stuff... Will have to update it.&#010;:)&#010;&#010;Best regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>custom file:line column entries</title>
<author><name>David Coombes &lt;webeire@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201303.mbox/%3cCAN4PrMZ_WLE=MW=3NGbn3A_F=eCkbfjL5=OthfAx6MyXJm42FQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAN4PrMZ_WLE=MW=3NGbn3A_F=eCkbfjL5=OthfAx6MyXJm42FQ@mail-gmail-com%3e</id>
<updated>2013-03-05T18:05:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
HI,&#010;&#010;I have a method in a class that calls Logger::info() The issue is the&#010;file:line column in the html appender will always report my helper method&#010;and not the calling file:line. Using php's debug_backtrace I can get the&#010;calling file:line but can't see how I can dynamically change the column. Is&#010;this possible, or is there a Logger::method() that I need to overwrite?&#010;&#010;My helper method currently is:&#010;public function log( $msg, $level='info' ){&#010;//trace&#010;$bt = debug_backtrace();&#010;$caller = array_shift($bt);&#010;$trace = $caller['file'] . ":" . $caller['line'];&#010;$this-&gt;log_api-&gt;trace($trace);&#010; //log&#010;$this-&gt;log_api-&gt;$level( $msg );&#010;}&#010;}&#010;&#010;And my xml config is:&#010;&lt;appender name="myHTMLFileAppender" class="LoggerAppenderFile"&gt;&#010;&lt;layout class="LoggerLayoutHtml"&gt;&#010;&lt;param name="locationInfo" value="true" /&gt;&#010;&lt;/layout&gt;&#010;&lt;param name="file" value="/path/to/logfile/log.html" /&gt;&#010;&lt;param name="append" value="false" /&gt;&#010;&lt;/appender&gt;&#010;&#010;regards,&#010;Daithi&#010;&#010;-- &#010;"Any society that would give up a little liberty to gain a little security,&#010;               will deserve neither and lose both." *- Benjamin Franklin*&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Two appenders</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201302.mbox/%3cCAKpWnhRetd4gJVm5o+nLUnnPVZ9kFrb-zZLWrDwzK+Fet6Mr0w@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhRetd4gJVm5o+nLUnnPVZ9kFrb-zZLWrDwzK+Fet6Mr0w@mail-gmail-com%3e</id>
<updated>2013-02-19T20:36:22Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 19 February 2013 21:23, Jan Galler &lt;jagaller@icloud.com&gt; wrote:&#010;&gt; Hi everyone,&#010;&#010;Hi Jan!&#010;&#010;&gt; I'm trying to create a logger that covers two outputs. The first one is&#010;&gt; a database (so every stuff should go there). And now I try to add an&#010;&gt; appender that sends every log-event with an level higher 'warn'.&#010;&gt;&#010;&gt; But I really don't get it working?! I'm doing the following code (PHP):&#010;&gt;&#010;&gt; --snip--&#010;&gt;&#010;&#010;Under 'appenders' you have an array with two identical keys, basically&#010;you do this:&#010;&#010;'appenders' =&gt; array(&#010;    'default' =&gt; ...,&#010;    'default' =&gt; ...,&#010;)&#010;&#010;So the second one overrides the first. You should name them&#010;differently, e.g. 'dbappender' and 'emailappender' (or whatever else&#010;you like).&#010;&#010;Finally, to link both appenders to the root logger, do this:&#010;&#010;'rootLogger' =&gt; array(&#010;    'appenders' =&gt; array('dbappender', 'emailappender'),&#010;),&#010;&#010;Also, you don't need to use filters in this case, just set the&#010;appender threshold to 'warn' and it will filter out levels under&#010;'warn'. To do this, replace 'filters' with:&#010;'threshold' =&gt; 'warn'&#010;&#010;Here's the whole shebang:&#010;&#010;Logger::configure(&#010;    array(&#010;        'appenders' =&gt; array(&#010;            'dbappender' =&gt; array(&#010;                'class' =&gt; 'LoggerAppenderPDO',&#010;                'params' =&gt; array(&#010;                    'dsn' =&gt;&#010;'mysql:host='.$logHost.';port='.$logPort.';dbname='.$logName,&#010;                    'user' =&gt; $logUser,&#010;                    'password' =&gt; $logPass,&#010;                    'table' =&gt; 'log4php_log',&#010;                ),&#010;            ),&#010;            'emailappender' =&gt; array(&#010;                'class' =&gt; 'LoggerAppenderMailEvent',&#010;                'layout' =&gt; array(&#010;                    'class' =&gt; 'LoggerLayoutSimple',&#010;                ),&#010;                'params' =&gt; array(&#010;                    'to' =&gt; 'jagaller@icloud.com',&#010;                    'from' =&gt; 'logger@asdf.com'&#010;                ),&#010;                'threshold' =&gt; 'warn'&#010;            ),&#010;        ),&#010;        'rootLogger' =&gt; array(&#010;            'appenders' =&gt; array('dbappender', 'emailappender'),&#010;        )&#010;    )&#010;);&#010;&#010;&#010;Try it out and see if it works. ;)&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Two appenders</title>
<author><name>Jan Galler &lt;jagaller@icloud.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201302.mbox/%3c7F678884-EB04-4D36-A424-48485BF30282@icloud.com%3e"/>
<id>urn:uuid:%3c7F678884-EB04-4D36-A424-48485BF30282@icloud-com%3e</id>
<updated>2013-02-19T20:23:17Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi everyone,&#010;&#010;I'm trying to create a logger that covers two outputs. The first one is &#010;a database (so every stuff should go there). And now I try to add an &#010;appender that sends every log-event with an level higher 'warn'.&#010;&#010;But I really don't get it working?! I'm doing the following code (PHP):&#010;&#010;Logger::configure(&#010;&#009;array(&#010;&#009;    'appenders' =3D&gt; array(&#010;&#009;        'default' =3D&gt; array(&#010;&#009;            'class' =3D&gt; 'LoggerAppenderPDO',&#010;&#009;            'params' =3D&gt; array(&#010;&#009;                'dsn' =3D&gt; =&#010;'mysql:host=3D'.$logHost.';port=3D'.$logPort.';dbname=3D'.$logName,&#010;&#009;                'user' =3D&gt; $logUser,&#010;&#009;                'password' =3D&gt; $logPass,&#010;&#009;                'table' =3D&gt; 'log4php_log',&#010;&#009;            ),&#010;&#009;         'default' =3D&gt; array(&#010;&#009;             'class' =3D&gt; 'LoggerAppenderMailEvent',&#010;&#009;             'layout' =3D&gt; array(&#010;&#009;                 'class' =3D&gt; 'LoggerLayoutSimple',&#010;&#009;             ),&#010;&#009;             'params' =3D&gt; array(&#010;&#009;                 'to' =3D&gt; 'jagaller@icloud.com',&#010;&#009;                 'from' =3D&gt; 'logger@asdf.com'&#010;&#009;             ),&#010;&#009;             'filters' =3D&gt; array(&#010;&#009;             &#009;array(&#010;&#009;             &#009;&#009;'class' =3D&gt; 'LoggerFilterLevelRange',&#010;&#009;                     'params' =3D&gt; array(&#010;&#009;                     &#009;'levelMin' =3D&gt; 'warn',&#010;&#009;                         'levelMax' =3D&gt; 'error',&#010;&#009;                     )&#010;&#009;             &#009;)&#010;&#009;         &#009;)&#010;&#009;         ),&#010;&#009;           =20&#010;&#009;        ),&#010;&#009;    ),&#010;&#009;    'rootLogger' =3D&gt; array(&#010;&#009;        'appenders' =3D&gt; array('default'),&#010;&#009;    ),&#010;&#010;&#009;)&#010;);&#010;&#010;&#010;Can anyone advise me how to do that?&#010;&#010;&#010;&#010;Best regards,&#010;Jan Galler&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAKpWnhQ74TOjXhVm6wXdo6Vgd0X9ZzwvWgSa2a1d1EjSDtfc7Q@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhQ74TOjXhVm6wXdo6Vgd0X9ZzwvWgSa2a1d1EjSDtfc7Q@mail-gmail-com%3e</id>
<updated>2013-01-23T12:48:14Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 23 January 2013 13:43, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; Interesting.  If you do just&#010;&gt; print "Hello World";&#010;&gt;&#010;&gt; It will print to console and browser - I just assumed that was stdout.&#010;&#010;Print and echo actually write to php://output stream, and not&#010;php://stdout. Frankly, I'm not sure exactly what happens under the&#010;hood, just what it says in the manual. Maybe someone else on the list&#010;can explain it better.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>James Pittman &lt;jpittman2@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAJ_abQsKLoDpt1DoAf5xCp7zfKgbbYOoEw-pTMmRsCTdd_x7Ew@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAJ_abQsKLoDpt1DoAf5xCp7zfKgbbYOoEw-pTMmRsCTdd_x7Ew@mail-gmail-com%3e</id>
<updated>2013-01-23T12:43:01Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Wed, Jan 23, 2013 at 2:25 AM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; On 23 January 2013 03:52, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; &gt; Yes that was it.  I was trying to output it to a browser.  I shouldn't&#010;&gt; have&#010;&gt; &gt; said "console stdout" - I just assumed that if it would output to a&#010;&gt; console,&#010;&gt; &gt; it would output to a browser... but it must check to see whether you're&#010;&gt; in a&#010;&gt; &gt; browser or CLI.&#010;&gt;&#010;&gt; Well not exactly, the appender makes no checks. It's just that writing&#010;&gt; directly to stdout will not output anything to the browser when using&#010;&gt; apache.&#010;&gt;&#010;&gt; Check out this link:&#010;&gt; http://stackoverflow.com/questions/11318768/php-stdout-on-apache&#010;&gt;&#010;&#010;Interesting.  If you do just&#010;print "Hello World";&#010;&#010;It will print to console and browser - I just assumed that was stdout.&#010;&#010;Jamie&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAKpWnhS0pZoe+MbnCeK5N2w1DAR_NN4htBPYYubGW+Ap_Q5RNg@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhS0pZoe+MbnCeK5N2w1DAR_NN4htBPYYubGW+Ap_Q5RNg@mail-gmail-com%3e</id>
<updated>2013-01-23T07:25:09Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 23 January 2013 03:52, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; Yes that was it.  I was trying to output it to a browser.  I shouldn't have&#010;&gt; said "console stdout" - I just assumed that if it would output to a console,&#010;&gt; it would output to a browser... but it must check to see whether you're in a&#010;&gt; browser or CLI.&#010;&#010;Well not exactly, the appender makes no checks. It's just that writing&#010;directly to stdout will not output anything to the browser when using&#010;apache.&#010;&#010;Check out this link:&#010;http://stackoverflow.com/questions/11318768/php-stdout-on-apache&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>James Pittman &lt;jpittman2@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAJ_abQvzVP9rzT52D4BaUUVPuCqr3Vv8T3T0Mv7WQdVuouYFOw@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAJ_abQvzVP9rzT52D4BaUUVPuCqr3Vv8T3T0Mv7WQdVuouYFOw@mail-gmail-com%3e</id>
<updated>2013-01-23T02:52:23Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Tue, Jan 22, 2013 at 4:44 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; On 22 January 2013 22:36, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; &gt; OK I fixed that, but I'm still not getting any console stdout.&#010;&gt;&#010;&gt; That's strange. Works for me...&#010;&gt; http://i.imgur.com/22BB8Ly.png&#010;&gt;&#010;&gt; Note that the console appender output will not be seen in browser,&#010;&gt; only via CLI. Just noticed this is not in the docs. :) In that case&#010;&gt; you have to use LoggerAppenderEcho.&#010;&gt;&#010;&gt; Does this help? If not, which version of php and log4php are you using?&#010;&gt;&#010;&#010;Yes that was it.  I was trying to output it to a browser.  I shouldn't have&#010;said "console stdout" - I just assumed that if it would output to a&#010;console, it would output to a browser... but it must check to see whether&#010;you're in a browser or CLI.&#010;&#010;Thanks!&#010;&#010;Jamie&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAKpWnhQ1XAQEe3OPx-aQQjDPgWLBhxdkoz=+xHmR284Lp2YM8w@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhQ1XAQEe3OPx-aQQjDPgWLBhxdkoz=+xHmR284Lp2YM8w@mail-gmail-com%3e</id>
<updated>2013-01-22T21:44:04Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 22 January 2013 22:36, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; OK I fixed that, but I'm still not getting any console stdout.&#010;&#010;That's strange. Works for me...&#010;http://i.imgur.com/22BB8Ly.png&#010;&#010;Note that the console appender output will not be seen in browser,&#010;only via CLI. Just noticed this is not in the docs. :) In that case&#010;you have to use LoggerAppenderEcho.&#010;&#010;Does this help? If not, which version of php and log4php are you using?&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>James Pittman &lt;jpittman2@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAJ_abQs6kWBve+po-i9d-nXQ1wi8SuXbjBuW8s-KN15yEbTa1w@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAJ_abQs6kWBve+po-i9d-nXQ1wi8SuXbjBuW8s-KN15yEbTa1w@mail-gmail-com%3e</id>
<updated>2013-01-22T21:36:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Tue, Jan 22, 2013 at 4:32 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; On 22 January 2013 22:26, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; &gt; Using the examples in the instructions, I created a config file and PHP&#010;&gt; &gt; file.  I am getting the expected logging in the myLog.log, but nothing&#010;&gt; in my&#010;&gt; &gt; STDOUT.  If I do NOT include the config.xml file, I DO get logging in&#010;&gt; &gt; STDOUT.  Any ideas?&#010;&gt;&#010;&gt; Yes!&#010;&gt;&#010;&gt; s/looger/logger/&#010;&gt;&#010;&gt; You misspelled &lt;logger&gt; in your config file. :)&#010;&gt;&#010;&gt; Regards!&#010;&gt; Ivan&#010;&gt;&#010;&#010;LOL!&#010;&#010;OK I fixed that, but I'm still not getting any console stdout.&#010;&#010;Jamie&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: File logging is working but not Console logging!</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAKpWnhSyUJP08c_Qz6bqLrs9iLJL2rX-_Gb1b-u0ThVZM79-KQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhSyUJP08c_Qz6bqLrs9iLJL2rX-_Gb1b-u0ThVZM79-KQ@mail-gmail-com%3e</id>
<updated>2013-01-22T21:32:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 22 January 2013 22:26, James Pittman &lt;jpittman2@gmail.com&gt; wrote:&#010;&gt; Using the examples in the instructions, I created a config file and PHP&#010;&gt; file.  I am getting the expected logging in the myLog.log, but nothing in my&#010;&gt; STDOUT.  If I do NOT include the config.xml file, I DO get logging in&#010;&gt; STDOUT.  Any ideas?&#010;&#010;Yes!&#010;&#010;s/looger/logger/&#010;&#010;You misspelled &lt;logger&gt; in your config file. :)&#010;&#010;Regards!&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>File logging is working but not Console logging!</title>
<author><name>James Pittman &lt;jpittman2@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201301.mbox/%3cCAJ_abQsGfGT9XfYpOeQDSwPDCd-rjsaMq-p-zpS52cZbkLcYQg@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAJ_abQsGfGT9XfYpOeQDSwPDCd-rjsaMq-p-zpS52cZbkLcYQg@mail-gmail-com%3e</id>
<updated>2013-01-22T21:26:01Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Using the examples in the instructions, I created a config file and PHP&#010;file.  I am getting the expected logging in the myLog.log, but nothing in&#010;my STDOUT.  If I do NOT include the config.xml file, I DO get logging in&#010;STDOUT.  Any ideas?&#010;&#010;&#010;XML file:&#010;&#010;&lt;?xml version="1.0" encoding="UTF-8"?&gt;&#010;&lt;configuration xmlns="http://logging.apache.org/log4php/"&gt;&#010;    &lt;appender name="default" class="LoggerAppenderFile"&gt;&#010;        &lt;layout class="LoggerLayoutSimple" /&gt;&#010;        &lt;param name="file" value="myLog.log" /&gt;&#010;        &lt;param name="append" value="true" /&gt;&#010;    &lt;/appender&gt;&#010;    &lt;appender name="FooAppender" class="LoggerAppenderConsole" /&gt;&#010;    &lt;root&gt;&#010;        &lt;appender_ref ref="default" /&gt;&#010;    &lt;/root&gt;&#010;    &lt;looger name="Foo"&gt;&#010;        &lt;appender_ref ref="FooAppender" /&gt;&#010;        &lt;level value="debug" /&gt;&#010;    &lt;/looger&gt;&#010;&lt;/configuration&gt;&#010;&#010;&#010;My PHP file:&#010;&lt;?php&#010;ini_set("display_errors", 1);&#010;// Include and configure log4php&#010;include('log4php/Logger.php');&#010;Logger::configure('config.xml');&#010;&#010;$logger = Logger::getLogger("main");&#010;$logger-&gt;info("Logging from main.");&#010;&#010;/**&#010; * This is a classic usage pattern: one logger object per class.&#010; */&#010;class Foo {&#010;&#010;    /** Holds the Logger. */&#010;    private $log;&#010;&#010;    /** Logger is instantiated in the constructor. */&#010;    public function __construct() {&#010;// The __CLASS__ constant holds the class name, in our case "Foo".&#010;// Therefore this creates a logger named "Foo" (which we configured in the&#010;config file)&#010;        $this-&gt;log = Logger::getLogger(__CLASS__);&#010;    }&#010;&#010;    /** Logger can be used from any member method. */&#010;    public function go() {&#010;        $this-&gt;log-&gt;info("Logging from Foo.");&#010;    }&#010;&#010;}&#010;&#010;$foo = new Foo();&#010;$foo-&gt;go();&#010;?&gt;&#010;&#010;&#010;&#010;&#010;-- &#010;____________________________________________________________________________________&#010;Taste and see the fullness of His peace, and hold on to what's being held&#010;out.&#010;~ from "The Healing Hand of God" by Matthew West&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Log4php git repository is live</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201212.mbox/%3cCAKpWnhS+AjkyyFDnSs6QUH4dGotSRYRCbCyCC9usrH2wju-J=w@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhS+AjkyyFDnSs6QUH4dGotSRYRCbCyCC9usrH2wju-J=w@mail-gmail-com%3e</id>
<updated>2012-12-08T11:26:07Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,&#010;&#010;Thanks to Gavin from Infra, our git repository is live as of today.&#010;This marks the end of svn for log4php code. The svn repo will remain&#010;available in read-only mode.&#010;&#010;Here's the links you might need:&#010;&#010;The official repository (and web interface), writable for developers:&#010;https://git-wip-us.apache.org/repos/asf/logging-log4php.git&#010;&#010;Official read-only mirror:&#010;git://git.apache.org/logging-log4php.git&#010;&#010;Github read-only mirror:&#010;https://github.com/apache/logging-log4php&#010;&#010;Note that the old apache and github mirrors, which were named&#010;"log4php.git" instead of the current name "logging-log4php.git" will&#010;be removed at some point in time, so don't use those for anything.&#010;&#010;The github mirror is updated once daily. I was told that it's not&#010;possible to update on commit since it's a mirror of the git.apache.org&#010;mirror, and not of the main repository. I will look into possible ways&#010;of improving this.&#010;&#010;None of the other Logging Services projects are affected by this&#010;change, except in a way to encourage them to move to git at some point&#010;in time. The transition was very painless.&#010;&#010;Best regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Verifying the git repo</title>
<author><name>Vladimír Gorej &lt;gorej@codescale.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201212.mbox/%3cCAPphp51+Oxb6BcuQ6eW2-LB3itHKJ7b_yUGzCO1aUUB+vQg1GQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPphp51+Oxb6BcuQ6eW2-LB3itHKJ7b_yUGzCO1aUUB+vQg1GQ@mail-gmail-com%3e</id>
<updated>2012-12-02T16:23:13Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Regarding git branching model, I read these two howtos:&#010;&#010;&#010;http://nvie.com/posts/a-successful-git-branching-model/&#010;&#010;This document is pretty much thought out, and I guess it really covers the&#010;development/release processes of log4php. I would use it as a reference.&#010;Since now, I was&#010;using lightweight tags, but document recommends using annotated tags with&#010;-a option. For this kind of project that log4php is, annotated tags are&#010;more suitable.&#010;So +1 from me, for this model.&#010;&#010;&#010;https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/working-with-git/&#010;&#010;Even though, the first document doesn't cover too much, there is really&#010;interesting passage about rebasing multiple commits.&#010;&#010;&#010;&#010;&#010;On Sun, Dec 2, 2012 at 4:58 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt; wrote:&#010;&#010;&gt; On 30 November 2012 17:07, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; &gt; I did not find any problems with the repo, except already known problem&#010;&gt; with&#010;&gt; &gt; the duplicate tags. I reviewed some of the history commits with 'git gui'&#010;&gt; &gt; tool and everything seemed fine.&#010;&gt;&#010;&gt; Yeah, i did the same using tortoise-git, and all seems well.&#010;&gt;&#010;&gt; &gt; Maybe we should have a look at this:&#010;&gt; &gt; https://help.github.com/articles/dealing-with-line-endings#platform-all,&#010;&gt; if&#010;&gt; &gt; commiters/contributors develop on various platforms.&#010;&gt;&#010;&gt; Well, the plan was to start using PSR-2 coding standard, and it says&#010;&gt; that all files should use unix-style line breaks (LF) regardless of&#010;&gt; the platform.&#010;&gt;&#010;&gt; So the simplest solution is to put the following line in .gitattributes:&#010;&gt; * text eol=lf&#010;&gt;&#010;&gt; That way all line breaks will be converted to LF.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&gt;&#010;&#010;&#010;&#010;-- &#010;&#010;Vladimír Gorej | CodeScale s.r.o.&#010;email: gorej@codescale.net&#010;tel: +420 777 861 279, +421 948 023 011&#010;web: http://www.codescale.net&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Verifying the git repo</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201212.mbox/%3cCAKpWnhTsRqDXfS1_5GffYrmX+enJEu8jjaEAHckW7Y3WWmfOuQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhTsRqDXfS1_5GffYrmX+enJEu8jjaEAHckW7Y3WWmfOuQ@mail-gmail-com%3e</id>
<updated>2012-12-02T15:58:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 30 November 2012 17:07, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; I did not find any problems with the repo, except already known problem with&#010;&gt; the duplicate tags. I reviewed some of the history commits with 'git gui'&#010;&gt; tool and everything seemed fine.&#010;&#010;Yeah, i did the same using tortoise-git, and all seems well.&#010;&#010;&gt; Maybe we should have a look at this:&#010;&gt; https://help.github.com/articles/dealing-with-line-endings#platform-all, if&#010;&gt; commiters/contributors develop on various platforms.&#010;&#010;Well, the plan was to start using PSR-2 coding standard, and it says&#010;that all files should use unix-style line breaks (LF) regardless of&#010;the platform.&#010;&#010;So the simplest solution is to put the following line in .gitattributes:&#010;* text eol=lf&#010;&#010;That way all line breaks will be converted to LF.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Verifying the git repo</title>
<author><name>Vladimír Gorej &lt;gorej@codescale.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPphp50f0muwd327Y7-5jMGLSim9yzoG9hO0-ii2NMAskQ386Q@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPphp50f0muwd327Y7-5jMGLSim9yzoG9hO0-ii2NMAskQ386Q@mail-gmail-com%3e</id>
<updated>2012-11-30T16:07:29Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
+1&#010;&#010;I did not find any problems with the repo, except already known problem&#010;with the duplicate tags. I reviewed some of the history commits with 'git&#010;gui' tool and everything seemed fine.&#010;Maybe we should have a look at this:&#010;https://help.github.com/articles/dealing-with-line-endings#platform-all, if&#010;commiters/contributors develop on various platforms.&#010;&#010;&#010;On Fri, Nov 30, 2012 at 4:38 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; Heads up,&#010;&gt;&#010;&gt; If no problems are found by Monday (T+3) then I will notify infra to&#010;&gt; continue with the migration process.&#010;&gt;&#010;&gt; Please take a little time to review the repo and reply to the list if&#010;&gt; you have any objections or remarks.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&gt;&#010;&gt; On 30 November 2012 08:09, Ivan Habunek &lt;ivan.habunek@gmail.com&gt; wrote:&#010;&gt; &gt; Hi all,&#010;&gt; &gt;&#010;&gt; &gt; The new git repository is set up and located at:&#010;&gt; &gt; https://git-wip-us.apache.org/repos/asf/logging-log4php.git&#010;&gt; &gt;&#010;&gt; &gt; Quoting:&#010;&gt; &gt; "It is the responsibility of each project to review the Git history in&#010;&gt; &gt; their new repository before it is made the official repository. In the&#010;&gt; &gt; event that a project has to revert to SVN due to a bad Git clone, it&#010;&gt; &gt; is the project's responsibility to reapply writes made to Git back to&#010;&gt; &gt; SVN. It is in the project's best interest to make sure that the&#010;&gt; &gt; history is correct before starting to use it as an official&#010;&gt; &gt; repository."&#010;&gt; &gt; -- from https://git-wip-us.apache.org/docs/switching-to-git.html&#010;&gt; &gt;&#010;&gt; &gt; I will try to verify everything is good, but I would appreciate extra&#010;&gt; &gt; sets of eyes on this one! So clone and compare with svn if you have&#010;&gt; &gt; the time, and report any issues here. Thanks!&#010;&gt; &gt;&#010;&gt; &gt; There is one known issue, since we renamed our tags to be compatible&#010;&gt; &gt; with Composer, they seem to appear twice for each released version.&#010;&gt; &gt; E.g. both old style: "apache-log4php-2.3.0" and new: "2.3.0". This&#010;&gt; &gt; should not present a problem, we'll just delete the old tag style&#010;&gt; &gt; after migration is final.&#010;&gt; &gt;&#010;&gt; &gt; Regards,&#010;&gt; &gt; Ivan&#010;&gt;&#010;&#010;&#010;&#010;-- &#010;&#010;Vladimír Gorej | CodeScale s.r.o.&#010;email: gorej@codescale.net&#010;tel: +420 777 861 279, +421 948 023 011&#010;web: http://www.codescale.net&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Verifying the git repo</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhT3qGHF3OmCe8BFvS6Kt66hb=C5cXat=jXCCSXU2OZ-DQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhT3qGHF3OmCe8BFvS6Kt66hb=C5cXat=jXCCSXU2OZ-DQ@mail-gmail-com%3e</id>
<updated>2012-11-30T15:38:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Heads up,&#010;&#010;If no problems are found by Monday (T+3) then I will notify infra to&#010;continue with the migration process.&#010;&#010;Please take a little time to review the repo and reply to the list if&#010;you have any objections or remarks.&#010;&#010;Regards,&#010;Ivan&#010;&#010;On 30 November 2012 08:09, Ivan Habunek &lt;ivan.habunek@gmail.com&gt; wrote:&#010;&gt; Hi all,&#010;&gt;&#010;&gt; The new git repository is set up and located at:&#010;&gt; https://git-wip-us.apache.org/repos/asf/logging-log4php.git&#010;&gt;&#010;&gt; Quoting:&#010;&gt; "It is the responsibility of each project to review the Git history in&#010;&gt; their new repository before it is made the official repository. In the&#010;&gt; event that a project has to revert to SVN due to a bad Git clone, it&#010;&gt; is the project's responsibility to reapply writes made to Git back to&#010;&gt; SVN. It is in the project's best interest to make sure that the&#010;&gt; history is correct before starting to use it as an official&#010;&gt; repository."&#010;&gt; -- from https://git-wip-us.apache.org/docs/switching-to-git.html&#010;&gt;&#010;&gt; I will try to verify everything is good, but I would appreciate extra&#010;&gt; sets of eyes on this one! So clone and compare with svn if you have&#010;&gt; the time, and report any issues here. Thanks!&#010;&gt;&#010;&gt; There is one known issue, since we renamed our tags to be compatible&#010;&gt; with Composer, they seem to appear twice for each released version.&#010;&gt; E.g. both old style: "apache-log4php-2.3.0" and new: "2.3.0". This&#010;&gt; should not present a problem, we'll just delete the old tag style&#010;&gt; after migration is final.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Verifying the git repo</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhTF-ORwyBXWDMkoPqJVZPX+nd4cCuSgeynETNr3KZcTiQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhTF-ORwyBXWDMkoPqJVZPX+nd4cCuSgeynETNr3KZcTiQ@mail-gmail-com%3e</id>
<updated>2012-11-30T07:09:25Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,&#010;&#010;The new git repository is set up and located at:&#010;https://git-wip-us.apache.org/repos/asf/logging-log4php.git&#010;&#010;Quoting:&#010;"It is the responsibility of each project to review the Git history in&#010;their new repository before it is made the official repository. In the&#010;event that a project has to revert to SVN due to a bad Git clone, it&#010;is the project's responsibility to reapply writes made to Git back to&#010;SVN. It is in the project's best interest to make sure that the&#010;history is correct before starting to use it as an official&#010;repository."&#010;-- from https://git-wip-us.apache.org/docs/switching-to-git.html&#010;&#010;I will try to verify everything is good, but I would appreciate extra&#010;sets of eyes on this one! So clone and compare with svn if you have&#010;the time, and report any issues here. Thanks!&#010;&#010;There is one known issue, since we renamed our tags to be compatible&#010;with Composer, they seem to appear twice for each released version.&#010;E.g. both old style: "apache-log4php-2.3.0" and new: "2.3.0". This&#010;should not present a problem, we'll just delete the old tag style&#010;after migration is final.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SVN going to readonly mode</title>
<author><name>Christian Grobmeier &lt;grobmeier@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPFNckieYmYwNwTNxHKOELyodQtH=2Afhe3yyHv+7sb6JHFtQA@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPFNckieYmYwNwTNxHKOELyodQtH=2Afhe3yyHv+7sb6JHFtQA@mail-gmail-com%3e</id>
<updated>2012-11-28T21:51:59Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Wed, Nov 28, 2012 at 8:52 PM, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; Sure, if it is on git, I will be as active as I can. Btw I have been working&#010;&gt; with git for 2 years now, so if anybody have a problem or a question&#010;&gt; regarding git, I will be more than happy to help.&#010;&#010;Good to know!&#010;&#010;&gt;&#010;&gt;&#010;&gt; On Wed, Nov 28, 2012 at 8:43 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;&#010;&gt; wrote:&#010;&gt;&gt;&#010;&gt;&gt; On 28 November 2012 19:55, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt;&gt; &gt; We are very glad to hear that ;] Thanks a lot.&#010;&gt;&gt;&#010;&gt;&gt; Hey, I hope you will be on-board for the push towards v3.0.&#010;&gt;&gt;&#010;&gt;&gt; Regards,&#010;&gt;&gt; Ivan&#010;&gt;&#010;&gt;&#010;&gt;&#010;&gt;&#010;&gt; --&#010;&gt;&#010;&gt; Vladimír Gorej | CodeScale s.r.o.&#010;&gt; email: gorej@codescale.net&#010;&gt; tel: +420 777 861 279, +421 948 023 011&#010;&gt; web: http://www.codescale.net&#010;&gt;&#010;&gt;&#010;&#010;&#010;&#010;--&#010;http://www.grobmeier.de&#010;https://www.timeandbill.de&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SVN going to readonly mode</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhSqVa+hoO2BRq+oR6wWRtBM8D2OGAh7BBwTrdsWO6YtbQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhSqVa+hoO2BRq+oR6wWRtBM8D2OGAh7BBwTrdsWO6YtbQ@mail-gmail-com%3e</id>
<updated>2012-11-28T20:08:35Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 28 November 2012 20:52, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; Sure, if it is on git, I will be as active as I can. Btw I have been working&#010;&gt; with git for 2 years now, so if anybody have a problem or a question&#010;&gt; regarding git, I will be more than happy to help.&#010;&#010;That's great. We'll discuss the workflow in more detail soon. I have&#010;some ideas, and could use some feedback.&#010;&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SVN going to readonly mode</title>
<author><name>Vladimír Gorej &lt;gorej@codescale.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPphp51hW80csb6wVDU9S0v4pJ2X3YYZqN6ArVEaxMwV7sPvXw@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPphp51hW80csb6wVDU9S0v4pJ2X3YYZqN6ArVEaxMwV7sPvXw@mail-gmail-com%3e</id>
<updated>2012-11-28T19:52:47Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Sure, if it is on git, I will be as active as I can. Btw I have been&#010;working with git for 2 years now, so if anybody have a problem or a&#010;question regarding git, I will be more than happy to help.&#010;&#010;&#010;On Wed, Nov 28, 2012 at 8:43 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; On 28 November 2012 19:55, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; &gt; We are very glad to hear that ;] Thanks a lot.&#010;&gt;&#010;&gt; Hey, I hope you will be on-board for the push towards v3.0.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&gt;&#010;&#010;&#010;&#010;-- &#010;&#010;Vladimír Gorej | CodeScale s.r.o.&#010;email: gorej@codescale.net&#010;tel: +420 777 861 279, +421 948 023 011&#010;web: http://www.codescale.net&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SVN going to readonly mode</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhSZSvR_qm5ErBypoUk69QXgwiCviHtcvaPKHxVsp1SY0g@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhSZSvR_qm5ErBypoUk69QXgwiCviHtcvaPKHxVsp1SY0g@mail-gmail-com%3e</id>
<updated>2012-11-28T19:43:09Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 28 November 2012 19:55, Vladimír Gorej &lt;gorej@codescale.net&gt; wrote:&#010;&gt; We are very glad to hear that ;] Thanks a lot.&#010;&#010;Hey, I hope you will be on-board for the push towards v3.0.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Apache Logging Services IRC channel</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhQTM99UoTTqivfHOvGki-oP8htR-hpzxt6+XD+pxkgnNA@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhQTM99UoTTqivfHOvGki-oP8htR-hpzxt6+XD+pxkgnNA@mail-gmail-com%3e</id>
<updated>2012-11-28T19:40:57Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I just registered #asflogging channel on irc.freenode.net. Everyone's&#010;welcome for any logging related discussions, including all&#010;subprojects, or just for hanging out.&#010;&#010;Please come join me so I won't be all alone. :)&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: SVN going to readonly mode</title>
<author><name>Vladimír Gorej &lt;gorej@codescale.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPphp50zk83McFW3wKRS7=8m85JByqX1hAx56TW8sf2P=ELTng@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPphp50zk83McFW3wKRS7=8m85JByqX1hAx56TW8sf2P=ELTng@mail-gmail-com%3e</id>
<updated>2012-11-28T18:55:37Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
We are very glad to hear that ;] Thanks a lot.&#010;&#010;&#010;On Wed, Nov 28, 2012 at 7:29 PM, Ivan Habunek &lt;ivan.habunek@gmail.com&gt;wrote:&#010;&#010;&gt; Hi all,&#010;&gt;&#010;&gt; I was notified by infra, that the log4php SVN repository is about to&#010;&gt; switch to readonly mode so that migration to git can get started.&#010;&gt;&#010;&gt; Once the migration is complete, we will start to operate on the new&#010;&gt; git repository at:&#010;&gt; https://git-wip-us.apache.org/repos/asf&#010;&gt;&#010;&gt; I will post any news as they come in.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&gt;&#010;&#010;&#010;&#010;-- &#010;&#010;Vladimír Gorej | CodeScale s.r.o.&#010;email: gorej@codescale.net&#010;tel: +420 777 861 279, +421 948 023 011&#010;web: http://www.codescale.net&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN going to readonly mode</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhRWTNc3V2QoEbKP2gSH=CA=6DaoLYep9hh8YRNHmqze9w@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhRWTNc3V2QoEbKP2gSH=CA=6DaoLYep9hh8YRNHmqze9w@mail-gmail-com%3e</id>
<updated>2012-11-28T18:29:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,&#010;&#010;I was notified by infra, that the log4php SVN repository is about to&#010;switch to readonly mode so that migration to git can get started.&#010;&#010;Once the migration is complete, we will start to operate on the new&#010;git repository at:&#010;https://git-wip-us.apache.org/repos/asf&#010;&#010;I will post any news as they come in.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Moving log4php to git</title>
<author><name>Michael Sole &lt;msole@gold-mobile.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c667898A6037673489A7BF0B63C8F3903091E8347@EXCHANGE02.Gold.local%3e"/>
<id>urn:uuid:%3c667898A6037673489A7BF0B63C8F3903091E8347@EXCHANGE02-Gold-local%3e</id>
<updated>2012-11-12T13:55:50Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I know the differences as I did an analysis recently for work but on second thought an opensource&#010;project like this may get more of a benefit from git than a private company might.&#013;&#010;&#013;&#010;I use both so no biggy&#013;&#010;&#013;&#010;-----Original Message-----&#013;&#010;From: Christian Grobmeier [mailto:grobmeier@gmail.com] &#013;&#010;Sent: Monday, November 12, 2012 8:45 AM&#013;&#010;To: Log4PHP User&#013;&#010;Subject: Re: Moving log4php to git&#013;&#010;&#013;&#010;On Mon, Nov 12, 2012 at 2:36 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#013;&#010;&gt; Yes I am aware, my point is that it would be counter intuitive. People would expect svn&#010;use and while git it is the new golden child it doesn't really offer much more in the way&#010;of advantages over svn. Moving repositories is a real pain.&#013;&#010;&#013;&#010;Actually moving to git is straightforward. It works really well.&#013;&#010;And there are many projects using git at Apache. Not all as first instance, but there are&#010;some.&#013;&#010;Look at: http://git.apache.org&#013;&#010;&#013;&#010;That said we have had some requests of users who wanted to use git.&#013;&#010;When it comes to the features svn/git: there actually are some differences. Personally I am&#010;not religious on it, but it clearly see some benefits when it comes to mergin. In addition&#010;we have received a couple of git patches so far.&#013;&#010;&#013;&#010;&gt; Just my opinion, though. I haven't contributed yet but I do use svn as my repo.&#013;&#010;&#013;&#010;Well, look at it like me (i am not good with git): its a great chance to learn more about&#010;it.&#013;&#010;&#013;&#010;And hey... we are looking forward to your contributions :-)&#013;&#010;&#013;&#010;Cheers&#013;&#010;&#013;&#010;&gt;&#013;&#010;&gt; -----Original Message-----&#013;&#010;&gt; From: Christian Grobmeier [mailto:grobmeier@gmail.com]&#013;&#010;&gt; Sent: Monday, November 12, 2012 8:34 AM&#013;&#010;&gt; To: Log4PHP User&#013;&#010;&gt; Subject: Re: Moving log4php to git&#013;&#010;&gt;&#013;&#010;&gt; On Mon, Nov 12, 2012 at 2:32 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#013;&#010;&gt;&gt; And isn't log4php?&#013;&#010;&gt;&#013;&#010;&gt; It does not mean we are limited to ASF tools. Every project can freely &#013;&#010;&gt; chose the tools it wants&#013;&#010;&gt;&#013;&#010;&gt;&#013;&#010;&gt;&gt;&#013;&#010;&gt;&gt; -----Original Message-----&#013;&#010;&gt;&gt; From: Ivan Habunek [mailto:ivan.habunek@gmail.com]&#013;&#010;&gt;&gt; Sent: Saturday, November 10, 2012 10:50 AM&#013;&#010;&gt;&gt; To: Log4PHP User&#013;&#010;&gt;&gt; Subject: Re: Moving log4php to git&#013;&#010;&gt;&gt;&#013;&#010;&gt;&gt; On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#013;&#010;&gt;&gt;&gt; Isn't subversion an apache project?&#013;&#010;&gt;&gt;&#013;&#010;&gt;&gt; Yes it is. What's your point? :)&#013;&#010;&gt;&gt;&#013;&#010;&gt;&gt; Regards,&#013;&#010;&gt;&gt; Ivan&#013;&#010;&gt;&#013;&#010;&gt;&#013;&#010;&gt;&#013;&#010;&gt; --&#013;&#010;&gt; http://www.grobmeier.de&#013;&#010;&gt; https://www.timeandbill.de&#013;&#010;&#013;&#010;&#013;&#010;&#013;&#010;--&#013;&#010;http://www.grobmeier.de&#013;&#010;https://www.timeandbill.de&#013;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhSeVeFas5vi9aRx+7ZYorHJdxuiR2_c-iZ5PJXqzxYTVw@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhSeVeFas5vi9aRx+7ZYorHJdxuiR2_c-iZ5PJXqzxYTVw@mail-gmail-com%3e</id>
<updated>2012-11-12T13:46:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 12 November 2012 14:36, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt; Yes I am aware, my point is that it would be counter intuitive. People would expect svn&#010;use and while git it is the new golden child it doesn't really offer much more in the way&#010;of advantages over svn. Moving repositories is a real pain.&#010;&gt;&#010;&gt; Just my opinion, though. I haven't contributed yet but I do use svn as my repo.&#010;&#010;There are several reasons for the switch.&#010;&#010;Firstly, we developers agreed that we prefer working with git, so this&#010;will make our jobs more pleasurable, and therefore more productive.&#010;&#010;Secondly, there are a couple of contributors whose input I value who&#010;said that they do not provide patches as often because we don't accept&#010;git pull requests.&#010;&#010;Also, I do not agree that git does not bring any significant&#010;advantages. One simple example: try developing without an active&#010;internet connection. I was in this position several times this year.&#010;&#010;Apache infra project is managing the transition and they already have&#010;a lot of experience doing this, so I don't anticipate many problems.&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Christian Grobmeier &lt;grobmeier@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPFNckivnLCeJng1fBQ5pHtZeixpNagy0jnVjvUgnEHFZkthVQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPFNckivnLCeJng1fBQ5pHtZeixpNagy0jnVjvUgnEHFZkthVQ@mail-gmail-com%3e</id>
<updated>2012-11-12T13:44:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Mon, Nov 12, 2012 at 2:36 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt; Yes I am aware, my point is that it would be counter intuitive. People would expect svn&#010;use and while git it is the new golden child it doesn't really offer much more in the way&#010;of advantages over svn. Moving repositories is a real pain.&#010;&#010;Actually moving to git is straightforward. It works really well.&#010;And there are many projects using git at Apache. Not all as first&#010;instance, but there are some.&#010;Look at: http://git.apache.org&#010;&#010;That said we have had some requests of users who wanted to use git.&#010;When it comes to the features svn/git: there actually are some&#010;differences. Personally I am not religious on it, but it clearly see&#010;some benefits when it comes to mergin. In addition we have received a&#010;couple of git patches so far.&#010;&#010;&gt; Just my opinion, though. I haven't contributed yet but I do use svn as my repo.&#010;&#010;Well, look at it like me (i am not good with git): its a great chance&#010;to learn more about it.&#010;&#010;And hey... we are looking forward to your contributions :-)&#010;&#010;Cheers&#010;&#010;&gt;&#010;&gt; -----Original Message-----&#010;&gt; From: Christian Grobmeier [mailto:grobmeier@gmail.com]&#010;&gt; Sent: Monday, November 12, 2012 8:34 AM&#010;&gt; To: Log4PHP User&#010;&gt; Subject: Re: Moving log4php to git&#010;&gt;&#010;&gt; On Mon, Nov 12, 2012 at 2:32 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt;&gt; And isn't log4php?&#010;&gt;&#010;&gt; It does not mean we are limited to ASF tools. Every project can freely chose the tools&#010;it wants&#010;&gt;&#010;&gt;&#010;&gt;&gt;&#010;&gt;&gt; -----Original Message-----&#010;&gt;&gt; From: Ivan Habunek [mailto:ivan.habunek@gmail.com]&#010;&gt;&gt; Sent: Saturday, November 10, 2012 10:50 AM&#010;&gt;&gt; To: Log4PHP User&#010;&gt;&gt; Subject: Re: Moving log4php to git&#010;&gt;&gt;&#010;&gt;&gt; On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt;&gt;&gt; Isn't subversion an apache project?&#010;&gt;&gt;&#010;&gt;&gt; Yes it is. What's your point? :)&#010;&gt;&gt;&#010;&gt;&gt; Regards,&#010;&gt;&gt; Ivan&#010;&gt;&#010;&gt;&#010;&gt;&#010;&gt; --&#010;&gt; http://www.grobmeier.de&#010;&gt; https://www.timeandbill.de&#010;&#010;&#010;&#010;--&#010;http://www.grobmeier.de&#010;https://www.timeandbill.de&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Moving log4php to git</title>
<author><name>Michael Sole &lt;msole@gold-mobile.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c667898A6037673489A7BF0B63C8F3903091E8234@EXCHANGE02.Gold.local%3e"/>
<id>urn:uuid:%3c667898A6037673489A7BF0B63C8F3903091E8234@EXCHANGE02-Gold-local%3e</id>
<updated>2012-11-12T13:36:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Yes I am aware, my point is that it would be counter intuitive. People would expect svn use&#010;and while git it is the new golden child it doesn't really offer much more in the way of advantages&#010;over svn. Moving repositories is a real pain.&#013;&#010;&#013;&#010;Just my opinion, though. I haven't contributed yet but I do use svn as my repo.&#013;&#010;&#013;&#010;-----Original Message-----&#013;&#010;From: Christian Grobmeier [mailto:grobmeier@gmail.com] &#013;&#010;Sent: Monday, November 12, 2012 8:34 AM&#013;&#010;To: Log4PHP User&#013;&#010;Subject: Re: Moving log4php to git&#013;&#010;&#013;&#010;On Mon, Nov 12, 2012 at 2:32 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#013;&#010;&gt; And isn't log4php?&#013;&#010;&#013;&#010;It does not mean we are limited to ASF tools. Every project can freely chose the tools it&#010;wants&#013;&#010;&#013;&#010;&#013;&#010;&gt;&#013;&#010;&gt; -----Original Message-----&#013;&#010;&gt; From: Ivan Habunek [mailto:ivan.habunek@gmail.com]&#013;&#010;&gt; Sent: Saturday, November 10, 2012 10:50 AM&#013;&#010;&gt; To: Log4PHP User&#013;&#010;&gt; Subject: Re: Moving log4php to git&#013;&#010;&gt;&#013;&#010;&gt; On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#013;&#010;&gt;&gt; Isn't subversion an apache project?&#013;&#010;&gt;&#013;&#010;&gt; Yes it is. What's your point? :)&#013;&#010;&gt;&#013;&#010;&gt; Regards,&#013;&#010;&gt; Ivan&#013;&#010;&#013;&#010;&#013;&#010;&#013;&#010;--&#013;&#010;http://www.grobmeier.de&#013;&#010;https://www.timeandbill.de&#013;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Christian Grobmeier &lt;grobmeier@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAPFNckiZcNgtTGYWCPFVXT6oPeNZa1Y+N1ccqt+K3mEM8fjr9g@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAPFNckiZcNgtTGYWCPFVXT6oPeNZa1Y+N1ccqt+K3mEM8fjr9g@mail-gmail-com%3e</id>
<updated>2012-11-12T13:34:19Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On Mon, Nov 12, 2012 at 2:32 PM, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt; And isn't log4php?&#010;&#010;It does not mean we are limited to ASF tools. Every project can freely&#010;chose the tools it wants&#010;&#010;&#010;&gt;&#010;&gt; -----Original Message-----&#010;&gt; From: Ivan Habunek [mailto:ivan.habunek@gmail.com]&#010;&gt; Sent: Saturday, November 10, 2012 10:50 AM&#010;&gt; To: Log4PHP User&#010;&gt; Subject: Re: Moving log4php to git&#010;&gt;&#010;&gt; On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt;&gt; Isn't subversion an apache project?&#010;&gt;&#010;&gt; Yes it is. What's your point? :)&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&#010;&#010;&#010;--&#010;http://www.grobmeier.de&#010;https://www.timeandbill.de&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Moving log4php to git</title>
<author><name>Michael Sole &lt;msole@gold-mobile.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c667898A6037673489A7BF0B63C8F3903091E80E8@EXCHANGE02.Gold.local%3e"/>
<id>urn:uuid:%3c667898A6037673489A7BF0B63C8F3903091E80E8@EXCHANGE02-Gold-local%3e</id>
<updated>2012-11-12T13:32:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
And isn't log4php?&#010;&#010;-----Original Message-----&#010;From: Ivan Habunek [mailto:ivan.habunek@gmail.com] &#010;Sent: Saturday, November 10, 2012 10:50 AM&#010;To: Log4PHP User&#010;Subject: Re: Moving log4php to git&#010;&#010;On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt; Isn't subversion an apache project?&#010;&#010;Yes it is. What's your point? :)&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhSN9Rtqrvc-wqTDbvb--y3omZO5X2RajgyLZ+8BTkJ+EQ@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhSN9Rtqrvc-wqTDbvb--y3omZO5X2RajgyLZ+8BTkJ+EQ@mail-gmail-com%3e</id>
<updated>2012-11-10T15:49:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
On 10 November 2012 16:47, Michael Sole &lt;msole@gold-mobile.com&gt; wrote:&#010;&gt; Isn't subversion an apache project?&#010;&#010;Yes it is. What's your point? :)&#010;&#010;Regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Michael Sole &lt;msole@gold-mobile.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c91EDCD97-671A-48C2-8C55-317F40719C3D@gold-mobile.com%3e"/>
<id>urn:uuid:%3c91EDCD97-671A-48C2-8C55-317F40719C3D@gold-mobile-com%3e</id>
<updated>2012-11-10T15:47:52Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Isn't subversion an apache project?&#010;&#010;Sent from my iPhone&#010;&#010;On Nov 10, 2012, at 6:56 AM, "Florian Semm" &lt;florian.semm@gmx.de&gt; wrote:&#010;&#010;&gt; Am 09.11.2012 09:48, schrieb Ivan Habunek:&#010;&gt;&gt; Hi all,&#010;&gt;&gt; &#010;&gt;&gt; I have submitted a ticket to move log4php to git. I believe this might&#010;&gt;&gt; be a step in the right direction for attracting more submissions,&#010;&gt;&gt; since I have encountered several people willing to contribute, but&#010;&gt;&gt; reluctant with using svn.&#010;&gt;&gt; &#010;&gt;&gt; The infra ticket is here:&#010;&gt;&gt; https://issues.apache.org/jira/browse/INFRA-5500&#010;&gt;&gt; &#010;&gt;&gt; You will have prior notice before the change becomes final.&#010;&gt;&gt; &#010;&gt;&gt; Best regards,&#010;&gt;&gt; Ivan&#010;&gt; Hey,&#010;&gt; &#010;&gt; thats greate +1&#010;&gt; &#010;&gt; Florian&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Moving log4php to git</title>
<author><name>Florian Semm &lt;florian.semm@gmx.de&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c509E40BF.1030007@gmx.de%3e"/>
<id>urn:uuid:%3c509E40BF-1030007@gmx-de%3e</id>
<updated>2012-11-10T11:55:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Am 09.11.2012 09:48, schrieb Ivan Habunek:&#010;&gt; Hi all,&#010;&gt;&#010;&gt; I have submitted a ticket to move log4php to git. I believe this might&#010;&gt; be a step in the right direction for attracting more submissions,&#010;&gt; since I have encountered several people willing to contribute, but&#010;&gt; reluctant with using svn.&#010;&gt;&#010;&gt; The infra ticket is here:&#010;&gt; https://issues.apache.org/jira/browse/INFRA-5500&#010;&gt;&#010;&gt; You will have prior notice before the change becomes final.&#010;&gt;&#010;&gt; Best regards,&#010;&gt; Ivan&#010;Hey,&#010;&#010;thats greate +1&#010;&#010;Florian&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Moving log4php to git</title>
<author><name>Ivan Habunek &lt;ivan.habunek@gmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3cCAKpWnhTY648M1vdVKrNzCOOZ2jNwNry=ff2xKR1iPAK5xSjPwA@mail.gmail.com%3e"/>
<id>urn:uuid:%3cCAKpWnhTY648M1vdVKrNzCOOZ2jNwNry=ff2xKR1iPAK5xSjPwA@mail-gmail-com%3e</id>
<updated>2012-11-09T08:48:14Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi all,&#010;&#010;I have submitted a ticket to move log4php to git. I believe this might&#010;be a step in the right direction for attracting more submissions,&#010;since I have encountered several people willing to contribute, but&#010;reluctant with using svn.&#010;&#010;The infra ticket is here:&#010;https://issues.apache.org/jira/browse/INFRA-5500&#010;&#010;You will have prior notice before the change becomes final.&#010;&#010;Best regards,&#010;Ivan&#010;&#010;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Cannot find superglobal variable $_SERVER</title>
<author><name>Robert Schneider &lt;r.schneider@artworx.at&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/logging-log4php-user/201211.mbox/%3c509A75DA.3060405@artworx.at%3e"/>
<id>urn:uuid:%3c509A75DA-3060405@artworx-at%3e</id>
<updated>2012-11-07T14:53:14Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Ok, thank you for your help!&#010;&#010;The information was already from phpinfo(). I have tried now also SEGPC &#010;but the effect was the same.&#010;&#010;I have now an other file which makes same problem but not with $_SERVER &#010;rather with $_REQUEST. Again, if I use it once the warning disappears. &#010;I'm not sure but my impression was that in some script the variable is &#010;set and others not. Might depend on some circumstances that I don't &#010;know. But I'm also not a true php expert.&#010;&#010;The site runs on 64bit Linux with PHP 5.4.8 but I don't know the Apache &#010;version.&#010;&#010;Regards,&#010;Robert&#010;&#010;&#010;&#010;Am 07.11.2012 15:17, schrieb Ivan Habunek:&#010;&gt; On 7 November 2012 14:59, Robert Schneider &lt;r.schneider@artworx.at&gt; wrote:&#010;&gt;&gt; Yes, variables_order is set to EGPCS. Could I savely change the order, in&#010;&gt;&gt; hope that it might work then?&#010;&gt; Hm, I haven't come across this problem. Just did a quick test locally&#010;&gt; on windows/apache 2.2/php 5.4.8. My variables_order is set to GPCS by&#010;&gt; default. $_SERVER is populated correctly onCLI and on apache.&#010;&gt;&#010;&gt; What's your setup? Make sure you're looking at the right php.ini.&#010;&gt; Sometimes apache is configured to use a different php.inii file than&#010;&gt; the one used by CLI. It's best if you look at phpinfo() output&#010;&gt; instead.&#010;&gt;&#010;&gt; BTW, I'm at apachecon so I might not have enough time to investigate&#010;&gt; this. But I'm back home for the weekend.&#010;&gt;&#010;&gt; Regards,&#010;&gt; Ivan&#010;&#010;&#010;
</pre>
</div>
</content>
</entry>
</feed>
