aneury1 / DOEngine

Another Game Engine, by now only use SDL2 and its dependent family library but we planning to use other librarys like SFML or allegro5 to create Drawing Context (opengl ,Vulkan or metal).
0 stars 2 forks source link

Add an interface and implementation for logging #23

Open victordmontero opened 7 months ago

victordmontero commented 7 months ago

Scope

The goal of this issue is to crate an interface and an implementation with the purpose of logging

The logging interface should at least has the following levels:

It could also some default categories like:

More categories could be added. Also, provide an interface to let the client code to expand this list without the necessity to modify the source code.

More info can be found at SDL Wiki

DOD