Fix a bug in handler tracking, where it was not correctly printing out some handler IDs.

This commit is contained in:
Christopher Kohlhoff 2013-08-07 09:34:36 +10:00
parent ad86ef20ba
commit c6d808c712

View File

@ -157,7 +157,7 @@ void handler_tracking::completion::invocation_begin()
#else // defined(ASIO_WINDOWS)
"@asio|%llu.%06llu|>%llu|\n",
#endif // defined(ASIO_WINDOWS)
timestamp.seconds, timestamp.microseconds);
timestamp.seconds, timestamp.microseconds, id_);
invoked_ = true;
}
@ -243,7 +243,7 @@ void handler_tracking::completion::invocation_end()
#else // defined(ASIO_WINDOWS)
"@asio|%llu.%06llu|<%llu|\n",
#endif // defined(ASIO_WINDOWS)
timestamp.seconds, timestamp.microseconds);
timestamp.seconds, timestamp.microseconds, id_);
id_ = 0;
}