-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
By implementing the necessary methods for LogWriter, it can support the Context Manager syntax:
writer = LogWriter.with_datetime(folder="./", threshold=10)
# Do stuff
writer.flush()would become
with LogWriter.with_datetime(folder="./", threshold=10) as writer:
# Do stuffReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request