diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-06 17:02:56 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-06 17:02:56 +0000 |
commit | eb2b8261794cadde0becbcfc50a0049f52dc05f2 (patch) | |
tree | 34300380dc5287cfabcf25c3991fa863a387dfb5 /lib/log.lib.php | |
parent | 8b733244acee4f2416d78569f7a403488397e69c (diff) | |
download | ampache-eb2b8261794cadde0becbcfc50a0049f52dc05f2.tar.gz ampache-eb2b8261794cadde0becbcfc50a0049f52dc05f2.tar.bz2 ampache-eb2b8261794cadde0becbcfc50a0049f52dc05f2.zip |
make the ip history only clear the old stuff sometimes, also fix rounding issues on the downsampling
Diffstat (limited to 'lib/log.lib.php')
-rw-r--r-- | lib/log.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/log.lib.php b/lib/log.lib.php index b0e06745..02ddb1a3 100644 --- a/lib/log.lib.php +++ b/lib/log.lib.php @@ -38,7 +38,7 @@ function log_event($username='Unknown',$event_name,$event_description,$log_name= $log_write = error_log($log_line, 3, $log_filename); if (!$log_write) { - echo "Error: Unable to write to log ($log_filename) Please check your log_path variable in ampache.cfg.php"; + echo "Warning: Unable to write to log ($log_filename) Please check your log_path variable in ampache.cfg.php"; } } // log_event |