From e7d04da2f8e9c166311760d8af2c687f7dd78583 Mon Sep 17 00:00:00 2001 From: Matt Jibson Date: Mon, 14 Jul 2014 12:08:00 -0400 Subject: [PATCH] Remove debug logging Importing this package should not change the behavior of the log package. Closes #1. --- fastping.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fastping.go b/fastping.go index 497fc42..0e9a5c4 100644 --- a/fastping.go +++ b/fastping.go @@ -44,11 +44,6 @@ import ( "time" ) -func init() { - log.SetFlags(log.Lmicroseconds) - log.SetPrefix("Debug: ") -} - func timeToBytes(t time.Time) []byte { nsec := t.UnixNano() b := make([]byte, 8)