TT_Initialize giving me unexpected output message.
Posted: Thu May 02, 2024 9:35 am
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).
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
Case where the messages do appear
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.
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.
Case where the messages don't appear
Code: Select all
...
while (true) {}
auto result = TT_Initialize();
...
Code: Select all
...
auto result = TT_Initialize();
while (true) {}
...
Any help or comments would be very appreciated.
Many thanks,
Eduardo Reis.