


LOGOUTPUT - embed a log string into an error message, used in the nightly runs.
Usage:
logoutput(logstring,message)

0001 function logoutput(logstring,message) 0002 %LOGOUTPUT - embed a log string into an error message, used in the nightly runs. 0003 % 0004 % Usage: 0005 % logoutput(logstring,message) 0006 0007 disp(sprintf('%s%s',logstring,message));