diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-07-02 22:35:54 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-07-02 22:35:54 -0400 |
commit | 4b5c3b05271a63cb7b2790ffa9a81453fef5b642 (patch) | |
tree | de0fb4b380d4882826dff7caae49114ce0a330ab /app/constants.php | |
parent | 9bc82296a93c348c376a7db472be1612f1785c3f (diff) |
Use PHP7 for Docker image
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/constants.php b/app/constants.php index 604f6acd..fc120692 100644 --- a/app/constants.php +++ b/app/constants.php @@ -21,7 +21,7 @@ defined('PLUGIN_INSTALLER') or define('PLUGIN_INSTALLER', true); defined('DEBUG') or define('DEBUG', strtolower(getenv('DEBUG')) === 'true'); // Logging drivers: syslog, stdout, stderr or file -defined('LOG_DRIVER') or define('LOG_DRIVER', getenv('LOG_DRIVER')); +defined('LOG_DRIVER') or define('LOG_DRIVER', ''); // Logging file defined('LOG_FILE') or define('LOG_FILE', DATA_DIR.DIRECTORY_SEPARATOR.'debug.log'); |