I posted a while ago about the sawserver (Presentation Services) log configuration file.
Today I’m doing some work digging around why sawserver’s throwing an error and so increased the log detail. This parameter is really helpful to use:
fmtName=”short”
Consider in these two screenshots, the first is with the default log format and shows about six entries. The second is short log format and is about ten times as much data.
Clik here to view.

default log format
Clik here to view.

short log format
Horses for courses, but on a “fishing expedition” through a log I’d say the short format is definitely easier to work with.
To implement it update $OracleBIData/web/config/logconfig.xml and change the Writer definition:
[...] <Writers> <Writer implementation="CoutWriter" name="Global Output Logger" writerClassId="2"/> [...]
[...] <Writers> <Writer fmtName="short" implementation="CoutWriter" name="Global Output Logger" writerClassId="2"/> [...]
and restart Presentation Services. On a tangent, a lazy way to do this on unix whilst leaving time for ports to free up before restarting is:
run-saw.sh stop;sleep 60;run-saw.sh start64
Posted in config, hack, log, sawserver Image may be NSFW.
Clik here to view.
