We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9bd5965 + c349655 commit e7d51c3Copy full SHA for e7d51c3
canal/sync.go
@@ -147,11 +147,11 @@ func (c *Canal) runSyncBinlog() error {
147
if strings.Contains(strings.ToLower(msg), strings.ToLower("procedure")) {
148
// Cut the first row from the message since it contain the procedure call and not the entire message
149
fl := strings.Split(msg, "\n")
150
- log.Errorf("parse SP Error: (%s)", fl[0])
+ log.Debugf("parse SP Error: (%s)", fl[0])
151
} else {
152
- log.Errorf("parse query(%s) err %v", e.Query, err)
+ log.Debugf("parse query(%s) err %v", e.Query, err)
153
}
154
- log.Error("will skip this event")
+ log.Debugln("will skip this event")
155
continue
156
157
for _, stmt := range stmts {
0 commit comments