Change vdiff log message level of missing target rows to Warning since it is confusing to users (and not useful) to see the message on the console when running vdiff during a workflow

Signed-off-by: Rohit Nayak <rohit@planetscale.com>
This commit is contained in:
Rohit Nayak 2020-09-02 23:06:31 +02:00
Родитель 1bfeba96d1
Коммит 7c139e31be
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: BA0A4E9168156524
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -806,7 +806,7 @@ func (td *tableDiffer) diff(ctx context.Context, wr *Wrangler) (*DiffReport, err
if targetRow == nil {
// no more rows from the target
// we know we have rows from source, drain, update count
wr.Logger().Errorf("Draining extra row(s) found on the source starting with: %v", sourceRow)
wr.Logger().Warningf("Draining extra row(s) found on the source starting with: %v", sourceRow)
count, err := sourceExecutor.drain(ctx)
if err != nil {
return nil, err