Merge pull request #123 from docker/diogo-remove-stupid-debug-message

Removing Writing data debug line
This commit is contained in:
Nathan McCauley 2015-07-22 23:52:44 -07:00
commit 4e8fb88e56
1 changed files with 1 additions and 1 deletions

View File

@ -102,8 +102,8 @@ func GetHandler(ctx context.Context, w http.ResponseWriter, r *http.Request) err
logrus.Errorf("[Notary Server] 404 GET repository: %s, role: %s", gun, tufRole) logrus.Errorf("[Notary Server] 404 GET repository: %s, role: %s", gun, tufRole)
return errors.ErrMetadataNotFound.WithDetail(nil) return errors.ErrMetadataNotFound.WithDetail(nil)
} }
logrus.Debug("Writing data")
w.Write(out) w.Write(out)
return nil return nil
} }