Search found 2 matches
- 06 Dec 2013, 01:00
- Forum: Scripting and Automation
- Topic: executeScript and logging
- Replies: 3
- Views: 2969
Re: executeScript and logging
Thanks for your answer, I got it working now :D For future reference, this is how I ended up doing it: import net.sourceforge.tuned.TeePrintStream // Open log file scriptlog = new FileOutputStream(new File("logfile.log"),true) // Stream output to log file System.setOut(new TeePrintStream(scriptlog ...
- 04 Dec 2013, 22:27
- Forum: Scripting and Automation
- Topic: executeScript and logging
- Replies: 3
- Views: 2969
executeScript and logging
Hello First off, thanks for making such an awesome program! I've been working on automating my media workflow using filebot and it's groovy scripts, I've made a lot of small custom scripts and now I would like to combine them in a postproccesing script. In my scripts I use different logging levels ...