You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems issue #209 is not fully fixed with Boost compiled in debug mode:
#209 fix resolve the problem in case of previous log file is empty, for instance because it is not properly rotated:
Digging deep in to the rotate_file() internals we can find this code, enabled only in debug mode:
As result, in case of log file size before try to publish big log entity was less than minimal rotation size, but with new entity it will be larger than m_FileRotationSize, we will go in the same infinity loop as we had with issue #209
The text was updated successfully, but these errors were encountered:
PLogTargetCollector on your second screenshot is not part of Boost.Log, I cannot comment on its behavior. Please ask for support from the maintainers of that class.
Hello!
It seems issue #209 is not fully fixed with Boost compiled in debug mode:
#209 fix resolve the problem in case of previous log file is empty, for instance because it is not properly rotated:
Digging deep in to the rotate_file() internals we can find this code, enabled only in debug mode:
As result, in case of log file size before try to publish big log entity was less than minimal rotation size, but with new entity it will be larger than m_FileRotationSize, we will go in the same infinity loop as we had with issue #209
The text was updated successfully, but these errors were encountered: