[LOG] Change some log level (#5361)

Change some log level from error to warn
This commit is contained in:
xxiao2018
2021-02-07 22:41:13 +08:00
committed by GitHub
parent 6b0521032d
commit 2ec55bf19e

View File

@ -222,7 +222,7 @@ public class RestoreJob extends AbstractJob {
for (Long tabletId : request.getDownloadedTabletIds()) {
SnapshotInfo info = snapshotInfos.get(tabletId, task.getBackendId());
if (info == null) {
LOG.error("failed to find snapshot infos of tablet {} in be {}, {}",
LOG.warn("failed to find snapshot infos of tablet {} in be {}, {}",
tabletId, task.getBackendId(), this);
return false;
}