Skip to content

Commit

Permalink
add newline in warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
Codelax committed Dec 24, 2024
1 parent 558fc40 commit 9acf5cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ func (sb *ServerBuilder) ValidateVolumes() error {
return err
}
} else {
logger.Warningf("skipping root volume validation")
logger.Warningf("skipping root volume validation\n")
}

// Validate total local volume sizes.
Expand All @@ -283,7 +283,7 @@ func (sb *ServerBuilder) ValidateVolumes() error {
return err
}
} else {
logger.Warningf("skip local volume size validation")
logger.Warningf("skip local volume size validation\n")
}

// Sanitize the volume map to respect API schemas
Expand Down

0 comments on commit 9acf5cc

Please sign in to comment.