Skip to content

Commit

Permalink
Change two debug log messages in cafMethod to be trace
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaute Lindkvist committed Oct 23, 2024
1 parent 0710678 commit 2155426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/cafMethod.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ class Method<Result( ArgTypes... )> : public MethodHandle
if ( auto accessor = this->accessor(); accessor )
{
auto serializedMethod = toJson( args... ).dump();
CAFFA_DEBUG( "Serialized method: " << serializedMethod );
CAFFA_TRACE( "Serialized method: " << serializedMethod );
auto serialisedResult = accessor->execute( serializedMethod );
CAFFA_DEBUG( "Got serialized result: " << serialisedResult );
CAFFA_TRACE( "Got serialized result: " << serialisedResult );
return resultFromJsonString( serialisedResult, accessor->objectFactory() );
}
CAFFA_ASSERT( m_callback );
Expand Down

0 comments on commit 2155426

Please sign in to comment.