adding namespace sls to public receiver api

This commit is contained in:
Erik Frojdh
2020-11-09 11:23:11 +01:00
parent 121a3ad733
commit 2020407438
8 changed files with 24 additions and 9 deletions

View File

@ -216,9 +216,9 @@ int main(int argc, char *argv[]) {
cprintf(BLUE, "Child process %d [ Tid: %ld ]\n", i,
(long)syscall(SYS_gettid));
std::unique_ptr<Receiver> receiver = nullptr;
std::unique_ptr<sls::Receiver> receiver = nullptr;
try {
receiver = sls::make_unique<Receiver>(startTCPPort + i);
receiver = sls::make_unique<sls::Receiver>(startTCPPort + i);
} catch (...) {
LOG(logINFOBLUE)
<< "Exiting Child Process [ Tid: " << syscall(SYS_gettid)