ilastik / ilastik4ij

ImageJ plugins to run ilastik workflows
MIT License
22 stars 17 forks source link

LogService #28

Closed tischi closed 4 years ago

tischi commented 4 years ago

@wolny I am leaning towards going back to simply using the LogService to reduce the complexity of the code. In the end this is meant for usage in ImageJ anyway and it is actually quite easy to get a LogService:

final ImageJ ij = new ImageJ();
final LogService logService =  ij.log();

This is arguably easier than finding our LogServiceWrapper class.

tischi commented 4 years ago

...would it be OK for you if I did that?

wolny commented 4 years ago

Hey @tischi, I totally agree. It will be less clutter in the code and since you use it in from the ImageJ anyway there we shouldn't sweat too much to make the API generic