summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--routers/router.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/router.php b/routers/router.php
index 5e15303..b061411 100644
--- a/routers/router.php
+++ b/routers/router.php
@@ -53,8 +53,8 @@ abstract class Router {
$data = $auth->send_command($complete_command);
$auth->disconnect();
- log_to_file('['.date("Y-m-d H:i:s").'] [client: '.$this->requester.'] '.
- $this->config['host'].'> '.$complete_command);
+ log_to_file('[client: '.$this->requester.'] '.$this->config['host'].'> '.
+ $complete_command);
return $data;
}