Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / platform / logging / impl / stdio / Logging.cpp
1 /* See Project CHIP LICENSE file for licensing information. */
2
3 #include <platform/logging/LogV.h>
4
5 #include <stdio.h>
6
7 namespace chip {
8 namespace Logging {
9 namespace Platform {
10
11 void LogV(const char * module, uint8_t category, const char * msg, va_list v)
12 {
13     printf("CHIP:%s: ", module);
14     vprintf(msg, v);
15     printf("\n");
16 }
17
18 } // namespace Platform
19 } // namespace Logging
20 } // namespace chip