Skip to content

Commit

Permalink
Remove unneeded \n
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Jul 13, 2020
1 parent 0bd8428 commit aae43f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanner/change_detector.go
Expand Up @@ -43,7 +43,7 @@ func (s *ChangeDetector) Scan(ctx context.Context, lastModifiedSince time.Time)
}
elapsed := time.Since(start)

log.Trace(ctx, "Folder analysis complete\n", "total", len(newMap), "changed", len(changed), "deleted", len(deleted), "elapsed", elapsed)
log.Trace(ctx, "Folder analysis complete", "total", len(newMap), "changed", len(changed), "deleted", len(deleted), "elapsed", elapsed)
s.dirMap = newMap
return
}
Expand Down

0 comments on commit aae43f4

Please sign in to comment.