This commit addresses an issue in the logging class where the metadata parameter was not consistently passed to the LogReturn instance within the _log method.
Changes Made:
Updated the _log method to ensure that the metadata is correctly included when creating a new LogReturn.
This change enhances the clarity and consistency of logged messages, allowing for better diagnostic information in log outputs.
By ensuring that metadata is properly handled, we improve the overall robustness of the logging functionality, making it easier for developers to trace and debug issues effectively.
This commit addresses an issue in the logging class where the
metadata
parameter was not consistently passed to theLogReturn
instance within the_log
method.Changes Made:
_log
method to ensure that themetadata
is correctly included when creating a newLogReturn
.By ensuring that metadata is properly handled, we improve the overall robustness of the logging functionality, making it easier for developers to trace and debug issues effectively.
Resolves #46