Print status to migration context logging after escaping % character #1374
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The string
status
has the character%
after the progress percentage number. When printed once again using theInfof
function, this%
is read as a directive for formatting and ends up showingMISSING
in the output as shown below:Simply changing
Infof
toInfo
does not work here becausethis.migrationContext.Log
is an object of the typeDefaultLogger
in this repository, which uses the library https://github.com/outbrain/golib/log. That library uses formatting even when theInfo
function is called:https://github.com/outbrain/golib/blob/2531e5dbcc71b6f8a4ccf1205c209ae89b7529fc/log/log.go#L191-L193
If this patch is not acceptible, then I can also just remove this line. The migration context logger prints the messages which are already printed to STDOUT once again to STDERR with the current time as a prefix. This change was introduced in the commit
gh-ost/go/logic/migrator.go
Line 1039 in 515aa72
A Pull Request should be associated with an Issue.
Related issue: #1373
script/cibuild
returns with no formatting errors, build errors or unit test errors.