From 2c7c10212c26872ac13fcbe75c3664f8516b1801 Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Tue, 30 Jun 2020 20:40:58 -0700 Subject: [PATCH] Add some debug logging to handleMunkiURL() function --- .../Controllers/MainWindowController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/code/apps/Managed Software Center/Managed Software Center/Controllers/MainWindowController.swift b/code/apps/Managed Software Center/Managed Software Center/Controllers/MainWindowController.swift index aeaae38f..75bbe5fb 100644 --- a/code/apps/Managed Software Center/Managed Software Center/Controllers/MainWindowController.swift +++ b/code/apps/Managed Software Center/Managed Software Center/Controllers/MainWindowController.swift @@ -842,6 +842,7 @@ class MainWindowController: NSWindowController, NSWindowDelegate, WKNavigationDe func handleMunkiURL(_ url: URL) { // Display page associated with munki:// url + NSLog("Handling URL: %@", url.absoluteString) guard url.scheme == "munki" else { msc_debug_log("URL \(url) has unsupported scheme") return