summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/config/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/config/config.php b/core/config/config.php
index 1b8fc4bb..8274f9be 100644
--- a/core/config/config.php
+++ b/core/config/config.php
@@ -87,7 +87,7 @@ $config['log_threshold'] = 3;
* Message logging directory.
*/
$config['log_directory'] = VARPATH . "logs";
-if (!is_writable($config['log_directory'])) {
+if (@!is_writable($config['log_directory'])) {
$config['log_threshold'] = 0;
}