Skip to content

Commit 77b4780

Browse files
authored
Redirect the log to log file from console (#36257)
1 parent 0b981e7 commit 77b4780

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

examples/fabric-sync/main.cpp

+55
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,69 @@
2020

2121
using namespace chip;
2222

23+
namespace {
24+
25+
constexpr char kFabricSyncLogFilePath[] = "/tmp/fabric_sync.log";
26+
27+
// File pointer for the log file
28+
FILE * sLogFile = nullptr;
29+
30+
void OpenLogFile(const char * filePath)
31+
{
32+
sLogFile = fopen(filePath, "a");
33+
if (sLogFile == nullptr)
34+
{
35+
perror("Failed to open log file");
36+
}
37+
}
38+
39+
void CloseLogFile()
40+
{
41+
if (sLogFile != nullptr)
42+
{
43+
fclose(sLogFile);
44+
sLogFile = nullptr;
45+
}
46+
}
47+
48+
void ENFORCE_FORMAT(3, 0) LoggingCallback(const char * module, uint8_t category, const char * msg, va_list args)
49+
{
50+
if (sLogFile == nullptr)
51+
{
52+
return;
53+
}
54+
55+
uint64_t timeMs = System::SystemClock().GetMonotonicMilliseconds64().count();
56+
uint64_t seconds = timeMs / 1000;
57+
uint64_t milliseconds = timeMs % 1000;
58+
59+
flockfile(sLogFile);
60+
61+
fprintf(sLogFile, "[%llu.%06llu] CHIP:%s: ", static_cast<unsigned long long>(seconds),
62+
static_cast<unsigned long long>(milliseconds), module);
63+
vfprintf(sLogFile, msg, args);
64+
fprintf(sLogFile, "\n");
65+
fflush(sLogFile);
66+
67+
funlockfile(sLogFile);
68+
}
69+
70+
} // namespace
71+
2372
void ApplicationInit()
2473
{
2574
ChipLogProgress(NotSpecified, "Fabric-Sync: ApplicationInit()");
75+
76+
OpenLogFile(kFabricSyncLogFilePath);
77+
78+
// Redirect logs to the custom logging callback
79+
Logging::SetLogRedirectCallback(LoggingCallback);
2680
}
2781

2882
void ApplicationShutdown()
2983
{
3084
ChipLogDetail(NotSpecified, "Fabric-Sync: ApplicationShutdown()");
85+
CloseLogFile();
3186
}
3287

3388
int main(int argc, char * argv[])

0 commit comments

Comments
 (0)