osd/osd_types: debug: include size in object_info_t operator<<

Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
Sage Weil 2013-12-13 13:40:01 -08:00
parent 1af6723cdc
commit 99cee55c8a

View File

@ -3260,6 +3260,7 @@ ostream& operator<<(ostream& out, const object_info_t& oi)
out << " " << oi.snaps;
if (oi.flags)
out << " " << oi.get_flag_string();
out << " s " << oi.size;
out << " uv" << oi.user_version;
out << ")";
return out;