diff --git a/examples/shared/shared/window.h b/examples/shared/shared/window.h index d736510..4506bb6 100644 --- a/examples/shared/shared/window.h +++ b/examples/shared/shared/window.h @@ -6,16 +6,16 @@ namespace OatmealUtils { inline GLFWwindow *initWindow(const char *title, uint32_t width, uint32_t height) { OatmealUtils::createLogger("window", nullptr); - OatmealUtils::get("window")->debug("Initializing window backend"); + OatmealUtils::getLogger("window")->debug("Initializing window backend"); glfwInit(); glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE); - OatmealUtils::get("window")->debug("Creating window"); + OatmealUtils::getLogger("window")->debug("Creating window"); GLFWwindow *window = glfwCreateWindow(width, height, title, nullptr, nullptr); if (window == nullptr) { const char *desc; uint32_t code = glfwGetError(&desc); - OatmealUtils::get("window")->critical("Failed to create window: ({}) {}", code, desc); + OatmealUtils::getLogger("window")->critical("Failed to create window: ({}) {}", code, desc); exit(EXIT_FAILURE); }