]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Output filename in log msg if one is supplied
authorZach Copley <zach@status.net>
Tue, 2 Nov 2010 23:13:20 +0000 (23:13 +0000)
committerZach Copley <zach@status.net>
Tue, 2 Nov 2010 23:13:20 +0000 (23:13 +0000)
lib/util.php

index d50fa2081432246d91eab3f7c196b5a0c81ea443..47e52c915290f84e5a908634488021d8a7e1dd68 100644 (file)
@@ -1499,6 +1499,7 @@ function common_request_id()
 function common_log($priority, $msg, $filename=null)
 {
     if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
+       $msg = (empty($filename)) ? $msg : basename($filename) . ' - ' . $msg;
         $msg = '[' . common_request_id() . '] ' . $msg;
         $logfile = common_config('site', 'logfile');
         if ($logfile) {