Fixed constants

This commit is contained in:
Dmitry Khomutov 2016-07-21 21:20:34 +06:00
commit 4fee89fb80
46 changed files with 204 additions and 212 deletions

View file

@ -100,7 +100,7 @@ class BuildLogger implements LoggerAwareInterface
*/
public function logDebug($message)
{
if (defined('PHPCI_DEBUG_MODE') && PHPCI_DEBUG_MODE) {
if (defined('DEBUG_MODE') && DEBUG_MODE) {
$this->log("\033[0;36m" . $message . "\033[0m");
}
}