I'm wondering if there's a way by which I can parse the logfile for failures only, and delete the blocks for successful filebot processed files.
This is because, for me, the primary use of the log file is to identify failures and then resolve them.
Is anyone doing anything similar?
Curious about logfile management
Re: Curious about logfile management
1.
Grep is your friend.
2.
You can make the log less verbose by setting the log level:
Grep is your friend.
2.
You can make the log less verbose by setting the log level:
Code: Select all
--log-level warning
-
- Posts: 24
- Joined: 13 Oct 2012, 18:32
Re: Curious about logfile management
Thanks, RedNoah.
I'm aware of grep, but my regexp skills are not good enough to be able to match entire blocks of text based on the last line.
I'm trying out logging at warning level.
Thanks, once again.
I'm aware of grep, but my regexp skills are not good enough to be able to match entire blocks of text based on the last line.
I'm trying out logging at warning level.
Thanks, once again.
Re: Curious about logfile management
Surely you could just copy and paste a solution from the internet for such a generic problem. 
e.g.
http://stackoverflow.com/a/22221307/1514467

e.g.
http://stackoverflow.com/a/22221307/1514467