Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
abstract_fiber: Remove verbose logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Feb 7, 2023
1 parent 9908585 commit ba4359b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions poseidon/fiber/abstract_fiber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ void
Abstract_Fiber::
do_abstract_fiber_on_resumed()
{
POSEIDON_LOG_DEBUG(("Resuming fiber `$1` (class `$2`)"), this, typeid(*this));
POSEIDON_LOG_TRACE(("Resuming fiber `$1` (class `$2`)"), this, typeid(*this));
}

void
Abstract_Fiber::
do_abstract_fiber_on_suspended()
{
POSEIDON_LOG_DEBUG(("Suspending fiber `$1` (class `$2`)"), this, typeid(*this));
POSEIDON_LOG_TRACE(("Suspending fiber `$1` (class `$2`)"), this, typeid(*this));
}

void
Expand Down

0 comments on commit ba4359b

Please sign in to comment.