This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
// Usage: | |
// VGONI_DEBUG_LOGS 1 = Print logs, if 0 won't. | |
// LOGD = Debug, LOGI = Info, LOGE = Error, LOGW = Warning, LOGV = Verbose | |
// 1º Include this header in the cpp to use logs | |
// 2º Add in top of the file: #define LOG_TAG "CppNameOrID" | |
// 3º LOGD("Your message: %s in position %d", variable.c_str(), myInt); | |
// | |
// Example In myFile.cpp: |