2022-03-16 20:50:55 +01:00
|
|
|
#include "Log.hpp"
|
|
|
|
#include "../defines.hpp"
|
|
|
|
|
|
|
|
#include <fstream>
|
2022-03-17 15:53:45 +01:00
|
|
|
#include <iostream>
|
2022-03-16 20:50:55 +01:00
|
|
|
|
|
|
|
void Debug::log(LogLevel level, const char* fmt, ...) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
|
|
|
|
// log to a file
|
|
|
|
const std::string DEBUGPATH = ISDEBUG ? "/tmp/hypr/hyprlandd.log" : "/tmp/hypr/hyprland.log";
|
|
|
|
std::ofstream ofs;
|
|
|
|
ofs.open(DEBUGPATH, std::ios::out | std::ios::app);
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
case LOG:
|
|
|
|
ofs << "[LOG] ";
|
|
|
|
break;
|
|
|
|
case WARN:
|
|
|
|
ofs << "[WARN] ";
|
|
|
|
break;
|
|
|
|
case ERR:
|
|
|
|
ofs << "[ERR] ";
|
|
|
|
break;
|
|
|
|
case CRIT:
|
|
|
|
ofs << "[CRITICAL] ";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buf[LOGMESSAGESIZE] = "";
|
|
|
|
|
|
|
|
vsprintf(buf, fmt, args);
|
|
|
|
|
|
|
|
ofs << buf << "\n";
|
|
|
|
|
|
|
|
ofs.close();
|
|
|
|
|
2022-03-17 15:53:45 +01:00
|
|
|
// log it to the stdout too.
|
|
|
|
std::cout << buf << "\n";
|
|
|
|
|
2022-03-16 20:50:55 +01:00
|
|
|
va_end(args);
|
|
|
|
}
|