The real change is that instead of passing the log file path to the constructor of LoggingDebugSession, it should be passed later in setup. I don't know why I did it that way to start out with, since the log file isn't created until setup happens anyway.
This would technically be a breaking change to the logger/LoggingDebugSession, but I'm not sure whether anybody is using it. Just in case, I've patched it up to allow keeping the same API. I would prefer to clean it up, but I assume there are other breaking changes that we are sitting on that can wait until something like 2.0. Thoughts?
Fixes #143
The real change is that instead of passing the log file path to the constructor of LoggingDebugSession, it should be passed later in
setup
. I don't know why I did it that way to start out with, since the log file isn't created untilsetup
happens anyway.This would technically be a breaking change to the logger/LoggingDebugSession, but I'm not sure whether anybody is using it. Just in case, I've patched it up to allow keeping the same API. I would prefer to clean it up, but I assume there are other breaking changes that we are sitting on that can wait until something like 2.0. Thoughts?