Skip to content

Commit 66a24d9

Browse files
committed
Removing early added NRP traces that have no real use today and may end up being written to console
1 parent 70ae3ec commit 66a24d9

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/adapters/mc/OsConfigResource.c

-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ void __attribute__((constructor)) Initialize()
6363
g_expectedObjectValue = DuplicateString(g_passValue);
6464
g_desiredObjectName = DuplicateString(g_defaultValue);
6565
g_desiredObjectValue = DuplicateString(g_failValue);
66-
67-
OsConfigLogInfo(GetLog(), "[OsConfigResource] SO library loaded by host process %d", getpid());
6866
}
6967

7068
void __attribute__((destructor)) Destroy()

src/adapters/mc/module.c

-6
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ MI_EXTERN_C MI_SchemaDecl schemaDecl;
77

88
void MI_CALL Load(MI_Module_Self** self, struct _MI_Context* context)
99
{
10-
OsConfigLogInfo(GetLog(), "[OsConfigResource] MI module load (PID: %d)", getpid());
11-
1210
*self = NULL;
1311
MI_Context_PostResult(context, MI_RESULT_OK);
1412
}
1513

1614
void MI_CALL Unload(MI_Module_Self* self, struct _MI_Context* context)
1715
{
18-
OsConfigLogInfo(GetLog(), "[OsConfigResource] MI module unload (PID: %d)", getpid());
19-
2016
MI_UNREFERENCED_PARAMETER(self);
2117
MI_UNREFERENCED_PARAMETER(context);
2218

@@ -25,8 +21,6 @@ void MI_CALL Unload(MI_Module_Self* self, struct _MI_Context* context)
2521

2622
MI_EXTERN_C MI_EXPORT MI_Module* MI_MAIN_CALL MI_Main(MI_Server* server)
2723
{
28-
OsConfigLogInfo(GetLog(), "[OsConfigResource] MI module main (PID: %d)", getpid());
29-
3024
static MI_Module module;
3125
MI_EXTERN_C MI_Server* __mi_server;
3226

0 commit comments

Comments
 (0)