An open API service indexing awesome lists of open source software.

https://github.com/yuzukitsuru/yall

Yall - Yet another logging library
https://github.com/yuzukitsuru/yall

cmake cpp cpp-library cpp17 logging logging-library

Last synced: over 1 year ago
JSON representation

Yall - Yet another logging library

Awesome Lists containing this project

README

          

# Yall
Yall - Yet another logging library

## Usage

```c++
#include "Yall.h"

class class_lift {
public:
class_lift(){
YALL_DEBUG_ << "Debug Message From Class";
}
};

void func(){
YALL_DEBUG_ << "Debug Message From Func";
}

int main() {
YALL_DEBUG_.EnableDebug();
YALL_DEBUG_ << "Debug Message 1";
class_lift classLift;
func();
YALL_DEBUG_ << "Debug Message 2";
YALL_DEBUG_.DisableDebug();
YALL_DEBUG_ << "Disable Message 1";
class_lift classLift1;
func();
YALL_INFO_ << "LOG Info";
YALL_WARN_ << "LOG Warning";
YALL_ERROR_ << "LOG Error";
YALL_CRITICAL_ << "LOG Cirtical";
}
```

## ScreenShots

![screen](.github/ScreenShot.PNG)