Compare commits

..

No commits in common. "952cb79034127cbbbb3638c4260effe7b9598c85" and "ea5625942d9f2476765077407265af8c0f795499" have entirely different histories.

3 changed files with 9 additions and 9 deletions

View File

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

View File

@ -81,10 +81,10 @@ unittest
mixin LoggingFuncs!(gLogger);
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]);
DEBUG("fok", 2,2);
ERROR("fok", 2,2);
INFO("fok", 2,2);
WARN("fok", 2,2);
writeln();
}

View File

@ -21,10 +21,10 @@ private unittest
mixin LoggingFuncs!(gLogger);
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]);
DEBUG("fok", 2,2);
ERROR("fok", 2,2);
INFO("fok", 2,2);
WARN("fok", 2,2);
writeln();
}