mirror of
https://github.com/ceph/ceph
synced 2025-02-21 09:57:26 +00:00
test/crimson: print pointer using fmt::ptr()
in fmtlib v9, it does not format typed pointers anymore, instead, we need to print them using fmt::ptr(). Signed-off-by: Kefu Chai <tchaikov@gmail.com>
This commit is contained in:
parent
3a1c5ac47d
commit
d887b97fe7
@ -1615,7 +1615,8 @@ class FailoverTestPeer : public Dispatcher {
|
||||
ceph_assert(test_suite);
|
||||
return test_suite->markdown();
|
||||
default:
|
||||
logger().error("TestPeer got unexpected command {} from Test", m_cmd);
|
||||
logger().error("TestPeer got unexpected command {} from Test",
|
||||
fmt::ptr(m_cmd.get()));
|
||||
ceph_abort();
|
||||
return seastar::now();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user