mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-30 02:43:05 +00:00
Removed fmt.Println for linting
This commit is contained in:
parent
083d2a871c
commit
e87b470996
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ var mockOidcCmd = &cobra.Command{
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
err := mockOIDC()
|
err := mockOIDC()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
log.Error().Err(err).Msgf("Error running mock OIDC server")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue