Files
mtapi/Examples/MatLab/AdvancedExample/logging4matlab/+logging/clearLogger.m
T
Christian_x7 76a6216cf7 Add a advanced example
It uses its own API which I packed between MTApi5 and MatLab.
Possible that this is useless, but errors from the .NET assembly are more tradable.
2020-10-24 10:14:58 +02:00

6 lines
97 B
Matlab

function clearLogger(name)
[~, destructor] = logging.getLogger(name);
destructor();
end