This commit is contained in:
Yuri Trikoz
2020-06-25 09:21:42 +03:00
parent 5ed1c23c62
commit 7c61ff2810
17 changed files with 182 additions and 254 deletions

View File

@@ -14,11 +14,11 @@ class PrintMessage {
_module = module;
}
void error(const String str) {
void error(const String& str) {
print(EL_ERROR, str);
}
void info(const String str) {
void info(const String& str) {
print(EL_INFO, str);
}