diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-10 13:09:29 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-10 13:09:29 +0200 |
commit | 5f29b7aa41a46e2b791c0dfc1023a07b02972e1f (patch) | |
tree | 9bd06bbb774f7e5f4f5ff3036a26e053be508eb1 | |
parent | 7abe2f10b7f2f4883743e9bf5d4b6811bb9d6bfa (diff) |
Fix logs format.
-rw-r--r-- | routers/router.php | 4 |
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; } |