diff options
Diffstat (limited to 'Kod/bilbana')
| -rw-r--r-- | Kod/bilbana/yc4/debug.m | 6 | ||||
| -rw-r--r-- | Kod/bilbana/yc4/verbose.m | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Kod/bilbana/yc4/debug.m b/Kod/bilbana/yc4/debug.m new file mode 100644 index 0000000..0295e02 --- /dev/null +++ b/Kod/bilbana/yc4/debug.m @@ -0,0 +1,6 @@ +function [] = debug(tag, strings) +global log_debug; +if log_debug + disp(strjoin({'DEBUG (', tag, '): ', strings}, '')) +end +end diff --git a/Kod/bilbana/yc4/verbose.m b/Kod/bilbana/yc4/verbose.m new file mode 100644 index 0000000..d24a384 --- /dev/null +++ b/Kod/bilbana/yc4/verbose.m @@ -0,0 +1,6 @@ +function [] = verbose(tag, strings) +global log_verbose; +if log_verbose + disp(strjoin({'VERBOSE (', tag, '): ', strings}, '')) +end +end |
