Aloha is a simple logging framework for C++
Stars
0
Forks
0
Watchers
0
Open Issues
3
Overall repository health assessment
No package.json found
This might not be a Node.js project
11
commits
3
commits
enabled testing and debug logs with enable and disable capabilities
146f177View on GitHubAdded copy constructor for the same reason as operator=
f115725View on GitHubThe ofstream member variable has its operator= deleted, as such I don't know how aloha's operator= worked until now (or if it did under all circumstances). Since the addition of the destructor, apps that use it don't compile, so I've added a custom operator= that closes and reopens the ofstream with the new path. I've changed two tests to trigger the use of operator=
76f155eView on GitHubAdded destructor to ensure that the output file is flushed before it is closed. Renamed member variable to be inline with the convention we use.
146e5c2View on GitHub[:hammer:] added the abbility to check if log is enabled
caf7976View on GitHub