Skip to content

Commit

Permalink
Decrease logging slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
johnweldon committed Feb 23, 2016
1 parent b740364 commit 6471a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dispatcher/mailqueue.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (q *folderQueue) Process(callbackFn MailQueueCallbackFn) error {

func (q *folderQueue) processItem(fn MailQueueCallbackFn) filepath.WalkFunc {
return func(path string, info os.FileInfo, err2 error) error {
glog.Infof("processing %q", path)
glog.V(2).Infof("processing %q", path)
if info.IsDir() {
if path == q.mailqueue {
return nil
Expand Down

0 comments on commit 6471a69

Please sign in to comment.