I am using the amc script with filebot on Qnas box. I wanted to know if these def are currently supported
FileBot Log Levels (from least to most verbose)
--log
WARNING - Only warnings and errors
INFO - Basic processing information (default)
FINE - More detailed processing decisions
FINER - Even more detail
FINEST/ALL - Everything, including debug traces
Pretty much. I'd generally only work with --log INFO or --log ALL(default) since all other log levels are uncommonly used, and so the console output might look strange if some lines are missing.
The color of the console output (if console supports colors) indicates the log level. ORANGE = ALL, BLUE = FINEST, GREEN = FINE, etc.
Debug Logging is separate from standard logging and disabled by default.
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.debug is not used and has no effect
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.color is not used and has no effect
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.time is not used and has no effect
Maybe I need help in what I am trying to do and am going about it the wrong way. I am wanting to know when Filebot skips a file because it is already present and I though I could get it from the logs this way.
nzdreamer55 wrote: ↑26 Oct 2025, 13:29
I am wanting to know when Filebot skips a file because it is already present and I though I could get it from the logs this way.
FileBot will naturally print important messages like that to the standard log.
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.debug is not used and has no effect
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.color is not used and has no effect
[2025-10-26 06:25:10] Invalid usage: --def net.filebot.logging.time is not used and has no effect
filebot -script fn:properties --def net.filebot.logging.debug=ALL is a standalone command. You seem to be under the impression that you need to copy & paste part of this command into your amc script command. You are mistaken. The command I posted already is complete standalone command that you can copy & paste & execute on the command-line to enable debug logging via the configuration file.
That said, debug logging probably doesn't do what you think it's doing. But you can try and see for yourself.