Skip to content
Snippets Groups Projects

[Context] Fix DBG message

Merged Florian Schmaus requested to merge flow/emper:fix-context-manager-dbg into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -27,6 +27,7 @@ auto operator<<(std::ostream& strm, const Context& context) -> std::ostream& {
// Can't use new context hook to communicate the context to free.
lastContextBeforeReturningToOriginalStack = currentContext;
currentContext = nullptr;
DBG("Switchting to original stack " << &originalStack << " from " << currentContext);
DBG("Switchting to original stack " << &originalStack << " from "
<< lastContextBeforeReturningToOriginalStack);
switch_and_load_context(&originalStack);
}
Loading