We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arduino-logging-library also has an error that I have to fix:
diff --git a/Logging.cpp b/Logging.cpp index aede239..b96a33c 100644 --- a/Logging.cpp +++ b/Logging.cpp @@ -8,8 +8,8 @@ void Logging::Init(int level, long baud){ void Logging::Error(char* msg, ...){ if (LOG_LEVEL_ERRORS <= _level) { - print ("ERROR: ",0); va_list args; + print ("ERROR: ", args); va_start(args, msg); print(msg,args); }
The text was updated successfully, but these errors were encountered:
also mixed tabs and spaces..
Sorry, something went wrong.
nijotz
No branches or pull requests
Arduino-logging-library also has an error that I have to fix:
The text was updated successfully, but these errors were encountered: