Skip to content

Commit fb83172

Browse files
committed
chore: cleanup
1 parent 6655aca commit fb83172

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

NativeScript/runtime/SymbolLoader.mm

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ virtual bool load() override {
108108
NSURL* bundleUrl = [NSURL URLWithString:frameworkPathStr relativeToURL:baseUrl];
109109
if (CFBundleRef bundle = CFBundleCreate(kCFAllocatorDefault, (CFURLRef)bundleUrl)) {
110110
resolver = std::make_unique<CFBundleSymbolResolver>(bundle);
111-
} else {
112-
os_log_debug(ns_symbolloader_log(), "NativeScript could not load bundle %{public}s", bundleUrl.absoluteString.UTF8String);
113111
}
114112
} else if (module->libraries->count == 1) {
115113
if (module->isSystem()) {
@@ -118,7 +116,6 @@ virtual bool load() override {
118116
NSString* libraryPath = [NSString stringWithFormat:@"%@/lib%s.dylib", libsPath, module->libraries->first()->value().getName()];
119117

120118
if (void* library = dlopen(libraryPath.UTF8String, RTLD_LAZY | RTLD_LOCAL)) {
121-
os_log_debug(ns_symbolloader_log(), "NativeScript loaded library %{public}s", libraryPath.UTF8String);
122119
resolver = std::make_unique<DlSymbolResolver>(library);
123120
} else if (const char* libraryError = dlerror()) {
124121
os_log_debug(ns_symbolloader_log(), "NativeScript could not load library %{public}s, error: %{public}s", libraryPath.UTF8String, libraryError);

0 commit comments

Comments
 (0)