Compare commits

...

4 Commits

Author SHA1 Message Date
Tristan B. Velloza Kildaire 952cb79034 Test
- Cleaned up tests
2024-04-11 08:24:14 +02:00
Tristan B. Velloza Kildaire 7b0d88cead Extras (unittests)
- Cleaned up tests
2024-04-11 08:24:05 +02:00
Tristan B. Velloza Kildaire 3e3355eb12 Merge branch 'master' into feature/args_helper 2024-04-11 08:18:46 +02:00
Tristan B. Velloza Kildaire 05c74b1aa4 Dub
- Updated tagline
2024-04-10 22:05:59 +02:00
3 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@
"dependencies": {
"dlog": ">=1.0.0"
},
"description": "Simple VT100 colourised pretty-printing logger",
"description": "Plug-and-play colorful VT100 logging for your terminal",
"license": "LGPL 3.0",
"name": "gogga",
"targetType": "library"

View File

@ -81,10 +81,10 @@ unittest
mixin LoggingFuncs!(gLogger);
DEBUG("fok", 2,2);
ERROR("fok", 2,2);
INFO("fok", 2,2);
WARN("fok", 2,2);
DEBUG("This is debug", 2.3, true, [2,2]);
ERROR("This is error", 2.3, true, [2,2]);
INFO("This is info", 2.3, true, [2,2]);
WARN("This is warn", 2.3, true, [2,2]);
writeln();
}

View File

@ -21,10 +21,10 @@ private unittest
mixin LoggingFuncs!(gLogger);
DEBUG("fok", 2,2);
ERROR("fok", 2,2);
INFO("fok", 2,2);
WARN("fok", 2,2);
DEBUG("This is debug", 2.3, true, [2,2]);
ERROR("This is error", 2.3, true, [2,2]);
INFO("This is info", 2.3, true, [2,2]);
WARN("This is warn", 2.3, true, [2,2]);
writeln();
}