[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -620,7 +620,7 @@ OB_INLINE bool ObStorageDatum::operator==(const ObStorageDatum &other) const
bret = ObDatum::binary_equal(*this, other);
}
if (!bret) {
STORAGE_LOG(WARN, "obj and datum no equal", K(other), K(*this));
STORAGE_LOG(DEBUG, "obj and datum no equal", K(other), K(*this));
}
return bret;
@ -638,7 +638,7 @@ OB_INLINE bool ObStorageDatum::operator==(const common::ObObj &other) const
bret = *this == datum;
}
if (!bret) {
STORAGE_LOG(WARN, "obj and datum no equal", K(other), K(datum), KPC(this));
STORAGE_LOG(DEBUG, "obj and datum no equal", K(other), K(datum), KPC(this));
}
return bret;
}