Skip to content

Commit

Permalink
Remove newline in log msg (#1776)
Browse files Browse the repository at this point in the history
remove newline
  • Loading branch information
hellt authored Dec 10, 2023
1 parent 90f2ebe commit de66f5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion border0_api/border0.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ func handleDeviceAuthorization(ctx context.Context, deviceAuthToken string, disa
return "", fmt.Errorf("failed to log you in, make sure that you have authenticated using the link above: %v", err)
}

fmt.Println("Login successful!\n")
fmt.Println("Login successful!")

return token.Token, nil
}

Expand Down

0 comments on commit de66f5f

Please sign in to comment.