Skip to content

Commit

Permalink
Fix loghandler memleak (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
iekashaev authored Mar 30, 2023
1 parent 1121396 commit eef1abe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/crow/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ namespace crow
class ILogHandler
{
public:
virtual ~ILogHandler() = default;

virtual void log(std::string message, LogLevel level) = 0;
};

Expand Down

0 comments on commit eef1abe

Please sign in to comment.