We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b164e commit d27980eCopy full SHA for d27980e
interface/lib/app.inc.php
@@ -195,14 +195,14 @@ public function log($msg, $priority = 0) {
195
/*
196
if (is_writable($this->_conf['log_file'])) {
197
if (!$fp = fopen ($this->_conf['log_file'], 'a')) {
198
- $this->error('Unable to open logfile.');
+ $this->error('Unable to open logfile: ' . $this->_conf['log_file']);
199
}
200
if (!fwrite($fp, date('d.m.Y-H:i').' - '. $msg."\r\n")) {
201
- $this->error('Unable to write to logfile.');
+ $this->error('Unable to write to logfile: ' . $this->_conf['log_file']);
202
203
fclose($fp);
204
} else {
205
206
207
*/
208
0 commit comments