Commit 3a834aae authored by Brian Downs's avatar Brian Downs

change string interpolation var in error msg

parent 574648ef
...@@ -112,7 +112,7 @@ func (c *Cluster) Start(ctx context.Context) (<-chan struct{}, error) { ...@@ -112,7 +112,7 @@ func (c *Cluster) Start(ctx context.Context) (<-chan struct{}, error) {
go func() { go func() {
if err := c.managedDB.StoreSnapshotData(ctx); err != nil { if err := c.managedDB.StoreSnapshotData(ctx); err != nil {
logrus.Errorf("Failed to record snapshots for cluster: %w", err) logrus.Errorf("Failed to record snapshots for cluster: %v", err)
} }
}() }()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment