11 lines
190 B
C++
11 lines
190 B
C++
#include "shared/logger.h"
|
|
|
|
int main() {
|
|
OatmealUtils::initLogging();
|
|
OatmealUtils::createLogger("window", nullptr);
|
|
|
|
OatmealUtils::get("window")->info("Test");
|
|
|
|
return 0;
|
|
}
|