From 43a2e6b075c5a2f2375bb73b10ec771c19912952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Thu, 12 Jun 2014 15:50:13 +0200 Subject: [PATCH] improved log message formatting --- application/ManiaControl.php | 2 +- application/core/ManiaControl.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/ManiaControl.php b/application/ManiaControl.php index b810f934..29675913 100644 --- a/application/ManiaControl.php +++ b/application/ManiaControl.php @@ -66,7 +66,7 @@ logMessage('Starting ManiaControl...'); function checkRequirements() { // Check for min PHP version $phpVersion = phpversion(); - $message = 'Checking for minimum required PHP-Version' . MIN_PHP_VERSION . ' ...'; + $message = 'Checking for minimum required PHP-Version ' . MIN_PHP_VERSION . ' ... '; if ($phpVersion < MIN_PHP_VERSION) { logMessage($message . $phpVersion . ' TOO OLD VERSION!'); logMessage(' -- Make sure that you install at least PHP ' . MIN_PHP_VERSION . '!'); diff --git a/application/core/ManiaControl.php b/application/core/ManiaControl.php index 27e22699..88164882 100644 --- a/application/core/ManiaControl.php +++ b/application/core/ManiaControl.php @@ -97,7 +97,7 @@ class ManiaControl implements CommandListener, TimerListener { // Construct Error Handler $this->errorHandler = new ErrorHandler($this); - $this->log('Loading ManiaControl v' . self::VERSION . '...'); + $this->log('Loading ManiaControl v' . self::VERSION . ' ...'); $this->loadConfig();