TT_Initialize giving me unexpected output message.

Post Reply
eduardo.reise
Posts: 5
Joined: Wed Jan 31, 2024 11:33 am

TT_Initialize giving me unexpected output message.

Post by eduardo.reise »

Hello Folks,

I am using Motive 3.0.3. When debugging my code in Visual Studio, I noticed the following message in the Output tab of the debugger (NOT in the console output).

Code: Select all

onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(21) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(22) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(23) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(24) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(25) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(26) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(550)\nlansp_c.dll!00007FFC2748D93D: (caller: 00007FFC51C7ACF6) LogHr(27) tid(4f24) 8007277C No such service is known. The service cannot be found in the specified name space.
I started commenting out a lot of code in my application to isolate the problem and see what was causing it. Finally, I was left with only the TT_Initialize call and a while(true) loop after that.

Case where the messages don't appear

Code: Select all

...
while (true) {}
auto result = TT_Initialize();
...
Case where the messages do appear

Code: Select all

...
auto result = TT_Initialize();
while (true) {}
...
I got to these messages after investigating a problem I was having, but since I was able to use the Optitrack independent of that, I am assuming these messages are totally unrelated to that. Despite that, I am still wondering whether or not these messages should be dismissed.

Any help or comments would be very appreciated.
Many thanks,

Eduardo Reis.
Post Reply