We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f877815 + f2ca18c commit 36eb739Copy full SHA for 36eb739
deps/exokit-bindings/magicleap/src/magicleap.cc
@@ -3095,6 +3095,8 @@ NAN_METHOD(MLContext::Present) {
3095
}
3096
3097
NAN_METHOD(MLContext::Exit) {
3098
+ ML_LOG(Info, "%s: MLContext exit start", application_name);
3099
+
3100
MLContext *mlContext = ObjectWrap::Unwrap<MLContext>(info.This());
3101
3102
if (MLGraphicsDestroyClient(&mlContext->graphics_client) != MLResult_Ok) {
@@ -3158,6 +3160,8 @@ NAN_METHOD(MLContext::Exit) {
3158
3160
3159
3161
// HACK: force the app to be "stopped"
3162
application_context.dummy_value = DummyValue::STOPPED;
3163
3164
+ ML_LOG(Info, "%s: MLContext exit end", application_name);
3165
3166
3167
/* NAN_METHOD(MLContext::WaitGetPoses) {
0 commit comments