DITA-OT logging
Posted: Fri Mar 13, 2015 7:12 pm
Is it possible to have oXygen also save the build log from a transform to the output folder?
Also, is there any information on what oXygen considers a warning, error, or failure?
Currently we have a custom tool that can filter log files by lines matching the following:
Also, is there any information on what oXygen considers a warning, error, or failure?
Currently we have a custom tool that can filter log files by lines matching the following:
Code: Select all
if ((
txt.Contains("[java] error") ||
txt.Contains(": Error!") ||
txt.Contains("[error]") ||
txt.Contains(": error:") ||
txt.Contains(": warning!") ||
txt.Contains(": warning:") ||
txt.Contains("] error:") ||
txt.Contains("] warning:") ||
txt.Contains("[info]") ||
txt.Contains("[warn]") ||
txt.Contains("build failed") ||
txt.Contains("system cannot find the path specified") ||
txt.Contains("system cannot find the file specified") ||
txt.Contains("contains space in its file name")
) && !txt.Contains("[dotj037w]") )