Skip to content
Snippets Groups Projects
Verified Commit 11094e0f authored by meskio's avatar meskio :tent:
Browse files

[bug] fmt int is %d instead of %i

parent 4b7cbc11
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ func waitForBitmaskd() error {
resp.Body.Close()
return nil
}
log.Printf("Bitmask is not ready (iteration %i): %v", i, err)
log.Printf("Bitmask is not ready (iteration %d): %v", i, err)
time.Sleep(1 * time.Second)
}
return err
......@@ -154,7 +154,7 @@ func getToken() (string, error) {
if err == nil {
return string(b), nil
}
log.Printf("Auth token is not ready (iteration %i): %v", i, err)
log.Printf("Auth token is not ready (iteration %d): %v", i, err)
time.Sleep(1 * time.Second)
}
return "", err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment