From 0e05b016edd64affd1905d15e826bac147900db5 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 30 Nov 2009 16:07:26 +0000 Subject: [PATCH] quitent permanent error_log --- phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php b/phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php index 6a136a6f9c..3b5108be1a 100644 --- a/phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php +++ b/phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php @@ -223,7 +223,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper elseif(!file_exists($fs_dir=dirname(self::_fs_path($this->opened_fs_id)))) { $umaskbefore = umask(); - if (self::LOG_LEVEL) error_log(__METHOD__." about to call mkdir for $fs_dir # Present UMASK:".decoct($umaskbefore)." called from:".function_backtrace()); + if (self::LOG_LEVEL > 1) error_log(__METHOD__." about to call mkdir for $fs_dir # Present UMASK:".decoct($umaskbefore)." called from:".function_backtrace()); self::mkdir_recursive($fs_dir,0700,true); } }