Skip to content
Snippets Groups Projects
Commit 0b935e3f authored by Cristian Galperti's avatar Cristian Galperti
Browse files

log printf bug fixed

parent a989c344
No related branches found
No related tags found
No related merge requests found
...@@ -705,7 +705,7 @@ classdef SCDclass_expcode ...@@ -705,7 +705,7 @@ classdef SCDclass_expcode
function obj=printlog(obj,str,varargin) function obj=printlog(obj,str,varargin)
% printlog, allows sprintf()-like expressions % printlog, allows sprintf()-like expressions
if obj.loadverbose==1 if obj.loadverbose==1
%fprintf('Expcode %d, ', obj.maincode, str); fprintf('Expcode %d, ', obj.maincode);
fprintf(str,varargin{:}); fprintf('\n'); fprintf(str,varargin{:}); fprintf('\n');
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment