remove timestamp in log

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2017-05-10 15:35:37 +08:00
parent 2d568d1fde
commit 3fffe80a14
No known key found for this signature in database
GPG Key ID: 0F84B2110C500B1F

View File

@ -40,7 +40,7 @@ type (
) )
func (p Plugin) log(host string, message ...interface{}) { func (p Plugin) log(host string, message ...interface{}) {
log.Printf("%s: %s", host, fmt.Sprintln(message...)) fmt.Printf("%s: %s", host, fmt.Sprintln(message...))
} }
// Exec executes the plugin. // Exec executes the plugin.