diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Network/EnumInterfaces.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Network/EnumInterfaces.cpp b/tests/Network/EnumInterfaces.cpp index e4c6be219..0b716acff 100644 --- a/tests/Network/EnumInterfaces.cpp +++ b/tests/Network/EnumInterfaces.cpp @@ -23,13 +23,14 @@ int main(int argc, char * argv[]) auto IPs = cNetwork::EnumLocalIPAddresses(); for (auto & ip: IPs) { - printf(" %s\n", ip.c_str()); + LOGD(" %s", ip.c_str()); } - printf("Done.\n"); + LOGD("All addresses enumerated."); // Terminate the cNetwork subsystem: cNetworkSingleton::Get().Terminate(); + LOGD("Test finished."); return 0; } |