Skip to content

Commit 3bbb1bc

Browse files
committed
Refs #20568: Address header removal in Fast DDS
Signed-off-by: EduPonz <eduardoponz@eprosima.com>
1 parent 3d03002 commit 3bbb1bc

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

include/DiscoveryItem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <string>
2525
#include <vector>
2626

27-
#include <fastrtps/rtps/common/Guid.h>
27+
#include <fastdds/rtps/common/Guid.h>
2828

2929
namespace tinyxml2 {
3030
class XMLElement;

src/DSLog.h.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
#undef LOG_NO_ERROR
3232
#endif
3333

34-
#include <fastrtps/log/Log.h>
34+
#include <fastdds/dds/log/Log.hpp>
3535

36-
#define LOG(x) logInfo(DISCOVERY_SERVER,x)
37-
#define LOG_INFO(x) logInfo(DISCOVERY_SERVER,x)
38-
#define LOG_WARN(x) logWarning(DISCOVERY_SERVER,x)
39-
#define LOG_ERROR(x) logError(DISCOVERY_SERVER,x)
36+
#define LOG(x) EPROSIMA_LOG_INFO(DISCOVERY_SERVER,x);
37+
#define LOG_INFO(x) EPROSIMA_LOG_INFO(DISCOVERY_SERVER,x);
38+
#define LOG_WARN(x) EPROSIMA_LOG_WARNING(DISCOVERY_SERVER,x;);
39+
#define LOG_ERROR(x) EPROSIMA_LOG_ERROR(DISCOVERY_SERVER,x);
4040

41-
#endif // _EPROSIMA_IS_LOG_H_
41+
#endif // _EPROSIMA_IS_LOG_H_

0 commit comments

Comments
 (0)