Make logging fit to standard
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 2m7s

This commit is contained in:
2024-09-17 23:17:19 -04:00
parent 41fa634da1
commit 58e432b9c3
5 changed files with 33 additions and 24 deletions

View File

@@ -25,7 +25,7 @@
#include <J3ML/Geometry/Sphere.hpp>
#include <J3ML/Geometry/Capsule.hpp>
#include <J3ML/Geometry/Triangle2D.hpp>
#include <JGL/Logger.h>
#include "JGL/logger/logger.hpp"
/// OpenGL Wrapper for rendering 2D & 3D graphics in both a 2D and 3D context.
namespace JGL {

View File

@@ -1,6 +1,6 @@
#pragma once
#include <jlog/Logger.hpp>
#include "jlog/Logger.hpp"
namespace JGL::Logger {
using namespace jlog;
@@ -8,4 +8,5 @@ namespace JGL::Logger {
extern GenericLogger Fatal;
extern GenericLogger Debug;
extern GenericLogger Error;
}