diff options
Diffstat (limited to 'common.go')
| -rw-r--r-- | common.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ isAlpha := regexp.MustCompile(`^[A-Za-z]+$`).MatchString for _, username := range []string{"userone", "user2", "user-three"} { if !isAlpha(username) { - fmt.Printf("%q is not valid\n", username) + log.Printf("%q is not valid\n", username) } } |
