Need to come up with a flexible API for handling of logging.
Current idea:
Fire gets a log(event, message) method and all internals will call it. The log method will dispatch the logging to a user defined logger which can write to a db, output to console, etc. If none exists it will be a zero-operation...
Need to come up with a flexible API for handling of logging.
Current idea:
Fire gets a
log(event, message)method and all internals will call it. Thelogmethod will dispatch the logging to a user defined logger which can write to a db, output to console, etc. If none exists it will be a zero-operation...