@@ -124,7 +124,7 @@ protected String createMatchPattern(String pattern) {
124124 protected Map <ObjectId , List <String >> findTagObjectIds (@ Nonnull Repository repo , boolean includeLightweightTags , String matchPattern ) {
125125 Map <ObjectId , List <DatedRevTag >> commitIdsToTags = getCommitIdsToTags (repo , includeLightweightTags , matchPattern );
126126 Map <ObjectId , List <String >> commitIdsToTagNames = transformRevTagsMapToDateSortedTagNames (commitIdsToTags );
127- log .info (String .format ("Created map: [%s]" , commitIdsToTagNames ));
127+ log .debug (String .format ("Created map: [%s]" , commitIdsToTagNames ));
128128
129129 return commitIdsToTagNames ;
130130 }
@@ -137,7 +137,7 @@ protected RevCommit findEvalCommitObjectId(@Nonnull String evaluateOnCommit, @No
137137 RevCommit evalCommit = walk .parseCommit (evalCommitId );
138138 walk .dispose ();
139139
140- log .info (String .format ("evalCommit is [%s]" , evalCommit .getName ()));
140+ log .debug (String .format ("evalCommit is [%s]" , evalCommit .getName ()));
141141 return evalCommit ;
142142 }
143143 } catch (IOException ex ) {
@@ -153,7 +153,7 @@ protected Map<ObjectId, List<DatedRevTag>> getCommitIdsToTags(@Nonnull Repositor
153153
154154 List <Ref > tagRefs = Git .wrap (repo ).tagList ().call ();
155155 Pattern regex = Pattern .compile (matchPattern );
156- log .info (String .format ("Tag refs [%s]" , tagRefs ));
156+ log .debug (String .format ("Tag refs [%s]" , tagRefs ));
157157
158158 for (Ref tagRef : tagRefs ) {
159159 walk .reset ();
@@ -168,7 +168,7 @@ protected Map<ObjectId, List<DatedRevTag>> getCommitIdsToTags(@Nonnull Repositor
168168 try {
169169 final RevTag revTag = walk .parseTag (resolvedCommitId );
170170 ObjectId taggedCommitId = revTag .getObject ().getId ();
171- log .info (String .format ("Resolved tag [%s] [%s], points at [%s] " , revTag .getTagName (), revTag .getTaggerIdent (), taggedCommitId ));
171+ log .debug (String .format ("Resolved tag [%s] [%s], points at [%s] " , revTag .getTagName (), revTag .getTaggerIdent (), taggedCommitId ));
172172
173173 // sometimes a tag, may point to another tag, so we need to unpack it
174174 while (isTagId (taggedCommitId )) {
@@ -185,7 +185,7 @@ protected Map<ObjectId, List<DatedRevTag>> getCommitIdsToTags(@Nonnull Repositor
185185 // it's an lightweight tag! (yeah, really)
186186 if (includeLightweightTags ) {
187187 // --tags means "include lightweight tags"
188- log .info (String .format ("Including lightweight tag [%s]" , name ));
188+ log .debug (String .format ("Including lightweight tag [%s]" , name ));
189189
190190 DatedRevTag datedRevTag = new DatedRevTag (resolvedCommitId , name );
191191
@@ -201,7 +201,7 @@ protected Map<ObjectId, List<DatedRevTag>> getCommitIdsToTags(@Nonnull Repositor
201201 }
202202
203203 for (Map .Entry <ObjectId , List <DatedRevTag >> entry : commitIdsToTags .entrySet ()) {
204- log .info (String .format ("key [%s], tags => [%s] " , entry .getKey (), entry .getValue ()));
204+ log .debug (String .format ("key [%s], tags => [%s] " , entry .getKey (), entry .getValue ()));
205205 }
206206 return commitIdsToTags ;
207207 } catch (Exception e ) {
0 commit comments