简体   繁体   中英

How can override log template?

I want to write log my component when i save or publish one item.
How can i override log template in joomla 3? The default output like this:

2013-06-03T04:41:53+00:00   INFO    -   Some text is here

I just want to remove datetime. I'm using JLog class

Just add option for logger like this:

JLog::addLogger(array('text_file' => 'log_file.log',
                      'text_file_path' => JPATH_ROOT . '/logs',
                      "logger" => "formattedtext",
                      "text_entry_format" => '{PRIORITY}    {CATEGORY}  {MESSAGE}'));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM