Print to stderr

This commit is contained in:
Joel Smith 2024-09-03 12:45:20 -05:00
parent f29ecc00bc
commit 1c952abb40
1 changed files with 1 additions and 1 deletions

View File

@ -987,7 +987,7 @@ func (ks keystore) migrate(key string) (*Record, error) {
return nil, fmt.Errorf("unable to set keyring.Item, err: %w", err)
}
fmt.Printf("Successfully migrated key %s.\n", key)
fmt.Fprintf(os.Stderr, "Successfully migrated key %s.\n", key)
return k, nil
}