Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #571 from openweave/bug/fix-weave-logging
Browse files Browse the repository at this point in the history
Fix typo in DefaultLogMessage
  • Loading branch information
Jay Logue authored Apr 29, 2020
2 parents f2e5cdb + f7ab7bb commit c479815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/support/logging/WeaveLogging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ static void DefaultLogMessage(uint8_t module, uint8_t category, const char *msg,

int priority = (category == kLogCategory_Error) ? ANDROID_LOG_ERROR : ANDROID_LOG_DEBUG;

__android_log_vprint(priority, moduleName, msg, v);
__android_log_vprint(priority, moduleName, msg, ap);
}
}

Expand Down

0 comments on commit c479815

Please sign in to comment.