-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Virga edited this page Sep 18, 2022
·
8 revisions
Welcome to the CPPSLL wiki! This is a small wiki for a simple program with like 3 functions.
CPPSLL stands for C++ Simple Logging Library because I'm uncreative.
It's just something small I made to get rid of the mess that is
std::cerr << "[ERROR][ENGINE]: Failed to create window.\n" << "[ERROR][SDL2]: " << SDL_GetError() << std::endl;
and to replace it with
Log.Error("Failed to create window.", "ENGINE");
Log.Error(SDL_GetError(), "SDL2");