Skip to content

Commit

Permalink
Discovery thread devicename now without start date
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed May 25, 2020
1 parent 48cc7fd commit b409434
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/vscp/common/retired_functionality/discovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,10 @@ threadDiscovery(void *data)

// This is an active client
pObj->m_pClientItem->m_bOpen = true;
pObj->m_pClientItem->m_dtutc = vscpdatetime::Now();
pObj->m_pClientItem->m_type = CLIENT_ITEM_INTERFACE_TYPE_CLIENT_INTERNAL;
pObj->m_pClientItem->m_strDeviceName =
"VSCP node discovery thread.|Started at ";
pObj->m_pClientItem->m_strDeviceName +=
vscpdatetime::Now().getISODateTime();
"VSCP node discovery thread.";

// Add the client to the Client List
pthread_mutex_lock(&pObj->m_pCtrlObject->m_clientList.m_mutexItemList);
Expand Down

0 comments on commit b409434

Please sign in to comment.