Improve logging

This commit is contained in:
Daniil Gentili 2017-07-24 00:37:39 +02:00
parent ea21597237
commit 6e50c16df2

View File

@ -117,7 +117,7 @@ class Logger
self::$colors[self::ERROR] = implode(';', [self::foreground['white'], self::set['bold'], self::background['red']]);
self::$colors[self::FATAL_ERROR] = implode(';', [self::foreground['red'], self::set['bold'], self::background['light_gray']]);
try {
self::$isatty = posix_isatty(STDOUT);
self::$isatty = defined('STDOUT') && posix_isatty(STDOUT);
} catch (\danog\MadelineProto\Exception $e) {
}
}