Skip to content

Commit

Permalink
fix notice formta bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ropnop committed Nov 24, 2019
1 parent f0cb620 commit 786ad9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func testUsername(ctx context.Context, username string) {
valid, err := kSession.TestUsername(username)
if valid {
atomic.AddInt32(&successes, 1)
logger.Log.Notice("[+] VALID USERNAME:\t %s", usernamefull)
logger.Log.Noticef("[+] VALID USERNAME:\t %s", usernamefull)
} else if err != nil {
// This is to determine if the error is "okay" or if we should abort everything
ok, errorString := kSession.HandleKerbError(err)
Expand Down

0 comments on commit 786ad9a

Please sign in to comment.