diff options
Diffstat (limited to 'doIncoming.go')
| -rw-r--r-- | doIncoming.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doIncoming.go b/doIncoming.go index 531f99d..ed5b4a0 100644 --- a/doIncoming.go +++ b/doIncoming.go @@ -47,7 +47,7 @@ func doIncoming(pb *zoopb.Packages) (string, error) { oldmd5 := md5.Sum(olddata) newmd5 := md5.Sum(newdata) if oldmd5 == newmd5 { - log.Info("files are the same", md5.Sum(olddata), md5.Sum(newdata)) + log.Printf("files are the same %x %x\n", md5.Sum(olddata), md5.Sum(newdata)) } else { shell.RunVerbose([]string{"dpkg", "-I", path}) shell.RunVerbose([]string{"dpkg", "-I", newfilename}) |
