Is there a %p like in printf for Poco::format or poco_x_fx() logging?
If not what is the recommended practice for print void * addresses(casting)?
int x = 0;
void *p = &x;
std::string str = Poco::format("address = %lx", (unsigned long)p);
Regards,
Jim





