summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/yc4/debug.m
blob: 0295e02d5e9802bc57bd09f1fca81d6d203d19c6 (plain) (blame)
1
2
3
4
5
6
function [] = debug(tag, strings)
global log_debug;
if log_debug
    disp(strjoin({'DEBUG (', tag, '): ', strings}, ''))
end
end