|
@@ -120,6 +120,24 @@ debugging purposes.
|
|
|
|
|
|
Prints Chrome's internal logging to the console.
|
|
|
|
|
|
+### `ELECTRON_DEBUG_DRAG_REGIONS`
|
|
|
+
|
|
|
+Adds coloration to draggable regions on [`BrowserView`](./browser-view.md)s on macOS - draggable regions will be colored
|
|
|
+green and non-draggable regions will be colored red to aid debugging.
|
|
|
+
|
|
|
+### `ELECTRON_DEBUG_NOTIFICATIONS`
|
|
|
+
|
|
|
+Adds extra logs to [`Notification`](./notification.md) lifecycles on macOS to aid in debugging. Extra logging will be displayed when new Notifications are created or activated. They will also be displayed when common actions are taken: a notification is shown, dismissed, its button is clicked, or it is replied to.
|
|
|
+
|
|
|
+Sample output:
|
|
|
+
|
|
|
+```sh
|
|
|
+Notification created (com.github.Electron:notification:EAF7B87C-A113-43D7-8E76-F88EC9D73D44)
|
|
|
+Notification displayed (com.github.Electron:notification:EAF7B87C-A113-43D7-8E76-F88EC9D73D44)
|
|
|
+Notification activated (com.github.Electron:notification:EAF7B87C-A113-43D7-8E76-F88EC9D73D44)
|
|
|
+Notification replied to (com.github.Electron:notification:EAF7B87C-A113-43D7-8E76-F88EC9D73D44)
|
|
|
+```
|
|
|
+
|
|
|
### `ELECTRON_LOG_ASAR_READS`
|
|
|
|
|
|
When Electron reads from an ASAR file, log the read offset and file path to
|