[ 
https://issues.apache.org/jira/browse/LOG4PHP-170?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13212594#comment-13212594
 ] 

Ivan Habunek commented on LOG4PHP-170:
--------------------------------------

You are mistaken. :-) Context printing defines whether the Nested Diagnostic 
Context is printed.

If you wish to display the file and line number, i suggest you use the pattern 
layout. Have a look at the docs here:
http://logging.apache.org/log4php/docs/layouts/pattern.html

For example, try a pattern like this one: "%d %c %-5p %m (at %F:%L)%n"

%F will resolve into the file name & path
%L will resolve into line number

See the rest in docs.

I plan to write better examples for the pattern logger, and there is a major 
update for it planned for next release. This update will allow usage of longer 
conversion words such as %file and %line as well as %F and %L. Expect this in a 
couple of months hopefully.

Regards,
Ivan

                
> Configuring a file or echo appender programmatically will not show context 
> printing despite setting the value to TRUE
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: LOG4PHP-170
>                 URL: https://issues.apache.org/jira/browse/LOG4PHP-170
>             Project: Log4php
>          Issue Type: Bug
>            Reporter: Wes Oden
>            Priority: Minor
>
> $logger = Logger::getLogger("example_echo");
> $appender = new LoggerAppenderEcho('example_echo');
>                       
> $layout = new LoggerLayoutTTCC();
> $layout->setContextPrinting(true);
> $layout->setDateFormat('%Y-%m-%d %H:%M:%S');
> $layout->setMicroSecondsPrinting(false);
> $layout->activateOptions();
>                               
> $appender->setLayout($layout);
> $appender->activateOptions();
> $logger->addAppender($appender);
> $logger->info('Test Logger');
> Output:
> 2012-02-20 17:19:56 [3456] INFO example_echo - Test Logger
> Mon Feb 20 17:19:56 2012,607 [3456] INFO example_echo - Test Logger
> The logger and appender are created, and work as expected, except that no 
> context information is given when it echos.
> Other set* methods work properly.  Only setContextPrinting does not.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to