summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-08 01:22:24 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-08 01:22:24 +0000
commit2b12112868cce750e83a015cb581d376f08a873b (patch)
treeaf2fb5cc9d41fee539937aa0dd7f470d0f456359 /lib
parenta17b1ac49b469c4adf5214599d2f6b4f819d5a7a (diff)
downloadampache-2b12112868cce750e83a015cb581d376f08a873b.tar.gz
ampache-2b12112868cce750e83a015cb581d376f08a873b.tar.bz2
ampache-2b12112868cce750e83a015cb581d376f08a873b.zip
fixed the last short tags I can find, and improved log file error message
Diffstat (limited to 'lib')
-rw-r--r--lib/log.lib.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/log.lib.php b/lib/log.lib.php
index 1273795e..e196a73f 100644
--- a/lib/log.lib.php
+++ b/lib/log.lib.php
@@ -33,7 +33,7 @@ function log_event($username='Unknown',$event_name,$event_description,$log_name=
$log_line = date("Y-m-d H:i:s",$log_time) . " { $username } ( $event_name ) - $event_description \n";
- error_log($log_line, 3, $log_filename) or die("Error: Unable to write to log ($log_filename)");
+ error_log($log_line, 3, $log_filename) or die("Error: Unable to write to log ($log_filename) Please check your log_path variable in ampache.cfg.php");
} // log_event