2009-03-10 08:53:50 +00:00

31 lines
799 B
Matlab

function int=setVerbose(int, bOn, varargin)
% Activate debug output for the MatlabProblem.
% setVerbose(JI, bOn [, dbgfile])
% It is written to a file with given name or to matlabproblem-debug.log
% if none is given. To switch file names, first deactivate logging.
% JI: the interface instance
% bOn: 1 activates debug output, 0 deactivates it
% dbgfile: optional filename
%
if (nargin<=1)
error('Missing argument!');
end
if (nargin > 2)
if ischar(varargin{1})
fname=varargin{1};
if (bOn==1)
disp(['Writing debug output to ' fname]);
else
disp('Debug output deactivated');
end
else
disp('Invalid third argument, expected char. Using default output file name');
end
else
fname='';
end
int.mp.setDebugOut( bOn==1, fname);