Skip to content
Snippets Groups Projects
Commit 6e70e3f0 authored by Jacob Vosmaer's avatar Jacob Vosmaer
Browse files

Remove noise 'unknown header' warnings

These warnings are not actionable and they are very noisy.
parent c2541d93
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -255,9 +255,6 @@ module Grit
author = UserInfo.new(value)
when "committer"
committer = UserInfo.new(value)
else
warn "unknown header '%s' in commit %s" % \
[key, rawobject.sha1.unpack("H*")[0]]
end
end
if not tree && author && committer
Loading
Loading
@@ -322,9 +319,6 @@ module Grit
tag = value
when "tagger"
tagger = UserInfo.new(value)
else
warn "unknown header '%s' in tag" % \
[key, rawobject.sha1.unpack("H*")[0]]
end
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment