Sunshine
Sunshine copied to clipboard
Add new API to modify display devices for Windows
Description
New changes allow for Sunshine to control display devices on Windows, such as:
- changing display mode (resolution and refresh rate);
- activating/deactivating displays;
- enabling/disabling HDR;
It also moves away from the \\.\DISPLAY1
-like configurable output names to proper that are pretty persistent (IDs changed a little after I reinstalled my GPU drivers, after DDU).
The applied changes are saved additionally saved to a file in case the PC dies or something so that Sunshine can undo the changes once it is started again.
Screenshot
Example of the new options exposed to the user:
Type of Change
- [ ] Bug fix (non-breaking change which fixes an issue)
- [x] New feature (non-breaking change which adds functionality)
- [x] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Dependency update (updates to dependencies)
- [ ] Documentation update (changes to documentation)
- [ ] Repository update (changes to repository files, e.g.
.github/...
)
Checklist
- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have added or updated the in code docstring/documentation-blocks for new or existing methods/components
Branch Updates
LizardByte requires that branches be up-to-date before merging. This means that after any PR is merged, this branch must be updated before it can be merged. You must also Allow edits from maintainers.
- [x] I want maintainers to keep my branch updated
Known issues (all resolved)
- ~~IDD HDR driver displays high-contrast colors when the display is activated and was inactive before. Seems to be a driver issue, since it does not happen with HDR dongle. A workaround would be to reset all the HDR states to off and then on again, but I don't think we should implement this workaround for this.~~
- ~~Sound fails to reset back to whatever was used before after the stream ends if a new display (without the same sink) was the only active display.~~
Wonder does it work on hyper-v guest ?
Wonder does it work on hyper-v guest ?
Should work, but you'll have to try it yourself.
@FrogTheFrog Any artifact that I can test out ?
@FrogTheFrog Any artifact that I can test out ?
You'll have to build yourself.
I have a review in process, but there is a lot to review here so it might take me a little bit.
In the meantime could you add the doc pages for the new source code files?
I have a review in process, but there is a lot to review here so it might take me a little bit.
In the meantime could you add the doc pages for the new source code files?
I've added the rst files, but I get the following warnings:
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/display_device.rst:4: WARNING: Error when parsing function declaration.
If the function has no return type:
Error in declarator or parameters-and-qualifiers
Invalid C++ declaration: Expected identifier in nested name. [error at 43]
NLOHMANN_JSON_SERIALIZE_ENUM (hdr_state_e, { { hdr_state_e::unknown, "unknown" }, { hdr_state_e::disabled, "disabled" }, { hdr_state_e::enabled, "enabled" } }) using hdr_state_map_t
-------------------------------------------^
If the function has a return type:
Error in declarator
If declarator-id with parameters-and-qualifiers:
Invalid C++ declaration: Expected identifier in nested name. [error at 29]
NLOHMANN_JSON_SERIALIZE_ENUM (hdr_state_e, { { hdr_state_e::unknown, "unknown" }, { hdr_state_e::disabled, "disabled" }, { hdr_state_e::enabled, "enabled" } }) using hdr_state_map_t
-----------------------------^
If parenthesis in noptr-declarator:
Error in declarator or parameters-and-qualifiers
If pointer to member declarator:
Invalid C++ declaration: Expected '::' in pointer to member (function). [error at 41]
NLOHMANN_JSON_SERIALIZE_ENUM (hdr_state_e, { { hdr_state_e::unknown, "unknown" }, { hdr_state_e::disabled, "disabled" }, { hdr_state_e::enabled, "enabled" } }) using hdr_state_map_t
-----------------------------------------^
If declarator-id:
Invalid C++ declaration: Expecting "(" in parameters-and-qualifiers. [error at 41]
NLOHMANN_JSON_SERIALIZE_ENUM (hdr_state_e, { { hdr_state_e::unknown, "unknown" }, { hdr_state_e::disabled, "disabled" }, { hdr_state_e::enabled, "enabled" } }) using hdr_state_map_t
-----------------------------------------^
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/parsed_config.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/config:4.
Declaration is '.. cpp:type:: config'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/parsed_config.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/display_device/display_device:4.
Declaration is '.. cpp:type:: display_device'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/parsed_config.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/rtsp:4.
Declaration is '.. cpp:type:: rtsp_stream'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/session.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/display_device/display_device:4.
Declaration is '.. cpp:type:: display_device'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/display_device/settings.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/display_device/display_device:4.
Declaration is '.. cpp:type:: display_device'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/platform/windows/display_device/settings_data.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/display_device/display_device:4.
Declaration is '.. cpp:type:: display_device'.
/home/frog/Desktop/Sunshine/docs/source/source_code/src/platform/windows/display_device/settings_topology.rst:4: WARNING: Duplicate C++ declaration, also defined at source_code/src/display_device/display_device:4.
Declaration is '.. cpp:type:: display_device'.
No idea how to fix them... Maybe it does not like forward declaration?
Yea, it doesn't like duplicates. I don't know how to solve it either at this point.
This is what I've done in these cases. https://github.com/LizardByte/Sunshine/blob/nightly/docs/source/source_code/src/platform/linux/graphics.rst?plain=1
I guess, try to have the main files documented... and the secondary ones can have the todo.
Yea, it doesn't like duplicates. I don't know how to solve it either at this point.
This is what I've done in these cases. https://github.com/LizardByte/Sunshine/blob/nightly/docs/source/source_code/src/platform/linux/graphics.rst?plain=1
I guess, try to have the main files documented... and the secondary ones can have the todo.
I can only include the main file at this point. Also, it seems to be having problems with templated macros (according to google) and there is no way to suppress warnings for NLOHMANN_JSON_SERIALIZE_ENUM out of the box it seems, so I have to also "todo" that file too...
Squashed and rebased the branch
@ReenigneArcher I have reached out to Frog explaining the main technical issues with trying to restore and swap monitors before and after stream, which I encountered with my script.
What is the goal of this PR?
I presume to improve the reliability of switching monitors, because currently the display names can change, causing Sunshine to break.
However, the solution proposed does not actually improve reliability or fix the problem because:
In Windows, Display IDs are subject to change due to the system's device enumeration process. This means that whenever there's a driver reinstallation or significant changes to the system, Windows will reassign new instance IDs to displays, based on their configuration and connection sequence. Consequently, these IDs are not permanent and should not be relied upon as unique identifiers.
What does that mean?
Using the device identifiers is just as unreliable as the display names and it will change, causing the same behavior as today. Once they change, Sunshine will be unable to swap to the monitor until the user resolves the issue by updating the new identifiers.
I have had two others try the same thing and ultimately all of us end up back to the same issue, there's no way to reliably swap monitors in Windows, without saving the settings in a profile fashion and then restoring them, much like https://sourceforge.net/p/monitorswitcher/code/HEAD/tree/MonitorSwitcher/MonitorSwitcher/
This is something we could do in Sunshine of course, but its hard to implement in terms of making it easy for the user to do and it also doesn't work for Linux.
My proposal here is to remove the display swap code portions and keep the resolution change and HDR portions as these are more reliable and users would benefit from including these in Sunshine.
We could support the capability of swapping monitors but the only reliable way I've found is restoring a profile like mentioned earlier, more work needed in the PR for that basically.
My counter arguments:
The IDs change
Yes, they indeed change after driver has been reinstalled. However, not by much. In my case only 1 number changes in the:
\\?\DISPLAY-HDR1500-5&4fd2de4&2&UID4354-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
string. It's the one before the &UID4354
part.
The IDs are used for lookup only and are "made up" by me, we could use anything arbitrary as long as we could identify the device. Maybe we could simply omit that changing number.
Incorrect IDs
I do not use ids that change every time the system is restarted like sourceInfo.adapterId
. I use monitorDevicePath
which seems to be pretty consistent for me, but might need to adapt it somehow?
Removing the display swap code portions
There is no need to do it in my opinion as we still need to use the IDs and it simply comes as a bonus (read the next section).
Restoring the profiles
There is no need save the "complete" profiles as they are already saved by Windows. The way Windows saves the profiles is per an active display topology.
Let's say you have 3 monitors A, B and C:
-
[A, B, C]
(all monitors are extended) - we have CONFIG1; -
[A, B]
(2 monitors are extended, 1 is disabled) - we have CONFIG2; -
[A, C]
(2 monitors are extended, 1 is disabled) - we have CONFIG3; -
[{A, B}, C]
(2 monitors are duplicated, 1 is extended) - we have CONFIG4;
You MUST ensure that you are modifying the correct config first! So, if I switch to topology [C]
and modify it, I make sure to ONLY revert the changes if we are still in the same topology (will try to switch back to it if not). Otherwise, you can loose positional information (where displays are relative to each other) and other information that was not meant to be changed.
You can easily test this with Windows Settings app, simply change the resolution/position to something random in the current topology, then enable/disable some device and see that the resolution is now different from what you've configured before
Now, if you connect a display D
, Windows would probably automatically activate the topology [C, D]
or maybe some other combination based on what the latest was when D
monitor was active.
My only question is what to do when we are reverting changes and the topology [C]
is not longer valid. Currently I try it once and give up, but we could technically do it until it becomes available (still waiting on feedback regarding this).
Conclusion
We still need to use IDs of some sort to first find out about the topology configuration we are dealing with, but we should agree on what is persistent enough. Keep in mind, I don't store previous settings for long, only until we can undo them (or try to).
I did some investigation into the IDs and these were the results:
INITIAL : \\?\DISPLAY-ACI27EC-5&4fd2de4&2&UID4352-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DIFF. PORTS : \\?\DISPLAY-ACI27EC-5&4fd2de4&2&UID4358-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DDU + NEW DRIVER: \\?\DISPLAY-ACI27EC-5&4fd2de4&3&UID4358-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
INITIAL : \\?\DISPLAY-HDR1500-5&4fd2de4&2&UID4357-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DIFF. PORTS : \\?\DISPLAY-HDR1500-5&4fd2de4&2&UID4354-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DDU + NEW DRIVER: \\?\DISPLAY-HDR1500-5&4fd2de4&3&UID4354-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
INITIAL : \\?\DISPLAY-LNX0000-1&1aafb3d5&2&UID256-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DIFF. PORTS : \\?\DISPLAY-LNX0000-1&1aafb3d5&2&UID256-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DDU + NEW DRIVER: \\?\DISPLAY-LNX0000-1&1aafb3d5&2&UID256-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
...
+ 2 more IDD HDR entries (LNX0000)
For the physical monitors the part \\?\DISPLAY-ACI27EC-5&4fd2de4
and \\?\DISPLAY-HDR1500-5&4fd2de4
seems to be consistent. The virtual display seems to be only influences by its own driver reinstall (not shown here).
Since I have this data (and some more available):
DEVICE ID: \\?\DISPLAY-ACI27EC-5&4fd2de4&2&UID4352-{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
DISPLAY NAME: \\.\DISPLAY1
FRIENDLY NAME: ROG PG279Q
DEVICE STATE: PRIMARY
HDR STATE: UNKNOWN
I could make my own ID, something like:
\\?\DISPLAY-ACI27EC-5&4fd2de4-ROGPG279Q-<edidManufactureId>-<edidProductCodeId>-<connectorInstance>
However, I sadly don't have 2 identical displays so I don't know if they would be unique enough (connectorInstance number should ensure the identical display uniqueness). I could maybe add some other EDID metadata, but I need help with this one...
I have 3 Dell S2417DG monitors on my workstation and this is what they look like in WinObj.
Interestingly the Container ID seems to be the most stable identifier for the monitors across connections (and even across GPU vendors). It's not perfect either but it's a lot better than the Device Instance ID. Here is the Device by Container view with non-present devices enabled to show previous instances of the monitors with different instance IDs.
The bottom 2 are actually Microsoft Basic Display Adapter devices (probably created during a driver update or fresh install), so those won't be relevant to us.
It looks like Microsoft actually provides built-in support for Container ID generation using EDID data with WDDM.
In some cases, the display device might not contain a container ID. In this case, Windows automatically generates a unique container ID by using the manufacturer ID, product ID, and serial number obtained from the Extended Display Identification Data (EDID). Because these values are unique, the container ID is also unique. Windows 8 provides a DDI that passes the same information to the WDDM driver so that it can be passed to the audio driver to generate the same container ID.
I did some more experimentation and here are the results (using https://github.com/FrogTheFrog/Sunshine/tree/id-test as a playground): before.txt switching wires around.txt ddu + fresh driver install.txt
To me it seems that the first part for InstanceID
is stable:
DISPLAY\HDR1500\5&4FD2DE4&3&UID4354 -> DISPLAY\HDR1500\5&4FD2DE4
According to chatGPT 5
is a bus number and 4FD2DE4
is used to distinguish device on the same bus (I assume GPU or something).
Container ID is stable for physical devices @cgutman, but is bonkers on the virtual ones (since the don't have enough edid information I assume).
ConnectorInstance seems to change when reconnecting devices physically, it seems to relate to GPU port somehow (could be unstable).
So, I would suggest to use:
<STABLE_PART_OF_INSTANCE_ID>-<edidManufactureId>-<edidProductCodeId>-<edidSerialId>-<edidMonitorDESC1>-<edidMonitorDESC2>-<edidMonitorDESC3>
OR if we have edidManufactureId != 0
and edidProductCodeId != 0
, use
<STABLE_PART_OF_INSTANCE_ID>-<ContainerID>
else:
<STABLE_PART_OF_INSTANCE_ID>-<HASHED_EDID>
Here I have connected my monitor with DisplayPort and HDMI at the same time:
deviceMonitorPath: \\?\DISPLAY#ACI27EC#5&4fd2de4&4&UID4357#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
displayName:\\.\DISPLAY2
friendlyName: ROG PG279Q
outputTechnology: 5
edidManufactureId: 26884
edidProductCodeId: 10220
connectorInstance: 1
instanceId: DISPLAY\ACI27EC\5&4FD2DE4&4&UID4357
edidSerialId: 16843009
edidMonitorDESC1: K5LMQS021930
edidMonitorDESC3: ROG PG279Q
edidUUID: {7d8852fa-c2bb-51d8-9c7b-d1dfdb7ba281}
ContainerID: {c50822ab-0095-5b80-bbc1-310e4136d665}
---------------------
deviceMonitorPath: \\?\DISPLAY#ACI27EC#5&4fd2de4&4&UID4352#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
displayName:\\.\DISPLAY1
friendlyName: ROG PG279Q
outputTechnology: 10
edidManufactureId: 26884
edidProductCodeId: 10220
connectorInstance: 0
instanceId: DISPLAY\ACI27EC\5&4FD2DE4&4&UID4352
edidSerialId: 21930
edidMonitorDESC1: #ASN9J6nNITbd
edidMonitorDESC3: ROG PG279Q
edidUUID: {0acd25df-9a9b-56a1-b932-5ef25fb16207}
ContainerID: {6d5aae8a-cb7e-5e6a-855a-7c9a887983b2}
and both edidUUID and ContainerID and are different and stable. Maybe we could just use:
<STABLE_PART_OF_INSTANCE_ID>-<HASHED_EDID>
With a fallback to
deviceMonitorPath
if edid is not available?
EDIT:
Here's the same output from the previous testing (with edidUUID this time): before2.txt switching wires around2.txt ddu + fresh driver install2.txt
It seems very stable
EDIT: Got more data from another user with nearly identical displays:
The proposed id still seems to be unique.
I have just realized that you could theoretically connect 2 cables of the same type from GPU to the monitor (if it has enough ports). Windows can differentiate cases of different types of cables connected...
@cgutman do you perhaps have a monitor with 2 ports of the same type you could connect? If Windows recognizes it as 2 displays, that means we need to also use port information in the ID - different ports would mean different IDs.
Any opinions?
Since I've got no feedback from anyone, the new device ID will consist of:
<STABLE_PART_OF_INSTANCE_ID>+<TARGET_ID_PART_OF_INSTANCE_ID>+<EDID>
Such ID will be unique, persist through system restarts and driver reinstall, but will change based on the GPU port. It also works for virtual displays.
Since I've got no feedback from anyone, the new device ID will consist of:
<STABLE_PART_OF_INSTANCE_ID>+<TARGET_ID_PART_OF_INSTANCE_ID>+<EDID>
Such ID will be unique, persist through system restarts and driver reinstall, but will change based on the GPU port. It also works for virtual displays.
I am not sure if it will work with duplicate models and users who have dual screens though
Since I've got no feedback from anyone, the new device ID will consist of:
<STABLE_PART_OF_INSTANCE_ID>+<TARGET_ID_PART_OF_INSTANCE_ID>+<EDID>
Such ID will be unique, persist through system restarts and driver reinstall, but will change based on the GPU port. It also works for virtual displays.
I am not sure if it will work with duplicate models and users who have dual screens though
I already had someone test it who had 2 identical and cheap monitors:
deviceMonitorPath: \\?\DISPLAY#CYS1603#5&f6a613f&0&UID41221#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
displayName:\\.\DISPLAY3
friendlyName: ASM-160QC
outputTechnology: 10
edidManufactureId: 13071
edidProductCodeId: 5635
connectorInstance: 2
instanceId: DISPLAY\CYS1603\5&F6A613F&0&UID41221
edidSerialId: 92
edidMonitorDESC2: ASM-160QC
edidUUID: {05b9a376-e61d-583f-a843-ebc9c20aff83}
ContainerID: {d7cff66b-aa4c-5b97-b6c2-bb3d5404a3ae}
---------------------
deviceMonitorPath: \\?\DISPLAY#CYS1603#5&f6a613f&0&UID41217#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
displayName:\\.\DISPLAY2
friendlyName: ASM-160QC
outputTechnology: 10
edidManufactureId: 13071
edidProductCodeId: 5635
connectorInstance: 0
instanceId: DISPLAY\CYS1603\5&F6A613F&0&UID41217
edidSerialId: 85
edidMonitorDESC3: ASM-160QC
edidUUID: {77a4d45f-bf08-5094-ae9c-c5d1a1a6b23f}
ContainerID: {d4ab4c29-839a-5340-ba2c-6e146580a8b9}
The EDID part encodes both a hopefully unique serial ID and (not shown here) a manufacturing timestamp. Moreover the TARGET_ID_PART_OF_INSTANCE_ID
, or the UIDXXXXX
part has a GPU port info "inside" it, so it should work.
I also tried this with the same monitor, however different ports (DisplayPort vs. HDMI) and it also works.
Then it should work, did we establish if it would keep retrying on failure? I know a lot of displays refuse to restore monitor settings until they are powered back on again.
Not yet. You mentioned it, however I don't know for how long it should be done before we give up? If we fail to restore settings, should we prevent further modifications until user has reenabled the display?
Also, when the monitor is turned off, does it still appear in the windows settings app?
Ok, so after talking into the void, the void has responded and we made such decisions:
- We will try to reset the changed display settings indefinitely every 30 seconds in case we have failed due to some reason (like display being disconnected).
- When Sunshine is started we will read the persistent data, try to reset settings and go back into the 30 seconds non-blocking loop.
- If the client tries to start the stream again, we will not allow it to until the display settings were reset, but there is 1 exception to this rule. If the end topology is the same as before, for example we have previously disabled all displays and enabled only the dongle, and now we want to enable only the dongle again - we will allow this. The loop will be stopped and restarted after the stream ends. Note, we will preserve the settings we have failed to revert and will try to revert back to those settings once again.
- In case it is no longer possible for whatever reason to revert changes (maybe display just broke during stream), there is now a button in the web UI troubleshooting page which will just reset the persistence. You will have to fix the settings yourself, but at least the Sunshine will stop complaining.
Yesterday I had forced shutdown the PC without disconnected Moonlight properly. Today I had encountered a "black screen" as my HDMI dongle was activated only, while other displays were disabled.
Good things is that Sunshine now tries to revert to the previous state persistently :) First time it failed:
[2024:02:22:09:25:53]: Info: Loading persistent display device settings.
[2024:02:22:09:25:53]: Info: Reverting display device settings.
[2024:02:22:09:25:53]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set display mode!
[2024:02:22:09:25:53]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set display mode!
[2024:02:22:09:25:53]: Warning: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to change topology using the topology from Windows DB! Trying to make Windows create the topology.
[2024:02:22:09:25:53]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to create new topology configuration!
[2024:02:22:09:25:53]: Warning: failed to switch back to the initial topology!
[2024:02:22:09:25:53]: Error: Failed to revert display device settings!
However, after 30 seconds it tried again:
[2024:02:22:09:25:55]: Info: Registered Sunshine mDNS service
[2024:02:22:09:26:23]: Info: Reverting display device settings.
[2024:02:22:09:26:24]: Info: Display device configuration reset.
Never been so happy about the feedback from @Nonary :D
@FrogTheFrog I did some testing and found a way to cause Sunshine to break and no longer support logging in from hard reboots.
[auto_resolution_remapping] -- [[{"received":"2540x1600","final":"3840x2400"}]]
[display_device_prep] -- [ensure_only_display]
[channels] -- [2]
[capture] -- [wgc]
[output_name] -- [{e4e51468-35d5-5833-8b43-41ab3f6abc91}]
[global_prep_cmd] -- [[{"do":"powershell.exe -executionpolicy bypass -file \"E:\\sources\\AudioSwapper\\AudioSwapper.ps1\"","elevated":"false","undo":"powershell.exe -executionpolicy bypass -file \"E:\\sources\\AudioSwapper\\AudioSwapper-Functions.ps1\" True"},{"do":"","elevated":"false","undo":"powershell.exe -executionpolicy bypass -windowstyle hidden -file \"E:\\sources\\PlayNiteWatcher\\PlayNiteWatcher-EndScript.ps1\" True"}]]
[2024:03:05:16:59:57]: Info: Sunshine version: 0.22.0.2881f6f.dirty
[2024:03:05:16:59:57]: Info: available display devices:
DEVICE ID: {0719b4f5-6ded-54b1-9ce6-f4b1e2c33be7}
DISPLAY NAME: NOT AVAILABLE
FRIENDLY NAME: LG TV SSCR2
DEVICE STATE: INACTIVE
HDR STATE: UNKNOWN
-----------------------
DEVICE ID: {e4e51468-35d5-5833-8b43-41ab3f6abc91}
DISPLAY NAME: \\.\DISPLAY9
FRIENDLY NAME: IDD HDR
DEVICE STATE: PRIMARY
HDR STATE: ENABLED
[2024:03:05:16:59:57]: Info: Loading persistent display device settings.
[2024:03:05:16:59:57]: Info: Reverting display device settings.
[2024:03:05:16:59:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:16:59:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:16:59:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set display mode!
[2024:03:05:16:59:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to change topology configuration!
[2024:03:05:16:59:57]: Error: failed to switch back to the initial topology!
[2024:03:05:16:59:57]: Error: Failed to revert display device settings!
[2024:03:05:16:59:57]: Info: nvprefs: Opened undo file from previous improper termination
[2024:03:05:16:59:57]: Info: nvprefs: Restored OGL_CPL_PREFER_DXPRESENT for base profile
[2024:03:05:16:59:57]: Info: nvprefs: Restored global profile settings from undo file - deleting the file
[2024:03:05:16:59:57]: Info: nvprefs: No need to modify application profile settings
[2024:03:05:16:59:57]: Info: nvprefs: Changed OGL_CPL_PREFER_DXPRESENT to OGL_CPL_PREFER_DXPRESENT_PREFER_ENABLED for base profile
[2024:03:05:16:59:57]: Info: Compiling shaders...
[2024:03:05:16:59:57]: Info: Compiled shaders
[2024:03:05:16:59:57]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //
[2024:03:05:16:59:57]: Info: Trying encoder [nvenc]
[2024:03:05:16:59:57]: Info: ddprobe.exe [1] [\\.\DISPLAY9] returned: 0x00000000
[2024:03:05:16:59:57]: Info: Set GPU preference: 1
[2024:03:05:16:59:57]: Info:
Device Description : Intel(R) UHD Graphics 770
Device Vendor ID : 0x00008086
Device Device ID : 0x0000A780
Device Video Mem : 128 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32645 MiB
Feature Level : 0x0000B100
Capture size : 3840x2160
Offset : 0x0
Virtual Desktop : 3840x2160
[2024:03:05:16:59:57]: Info: Active GPU has HAGS disabled
[2024:03:05:16:59:57]: Info: Using realtime GPU priority
[2024:03:05:16:59:57]: Info: Desktop resolution [3840x2160]
[2024:03:05:16:59:57]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:05:16:59:57]: Info: Display refresh rate [120Hz]
[2024:03:05:16:59:57]: Info: Requested frame rate [60fps]
[2024:03:05:16:59:57]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:05:16:59:57]: Info: Encoder [nvenc] is not supported on this GPU
[2024:03:05:16:59:57]: Info: Trying encoder [quicksync]
[2024:03:05:16:59:57]: Info:
Device Description : Intel(R) UHD Graphics 770
Device Vendor ID : 0x00008086
Device Device ID : 0x0000A780
Device Video Mem : 128 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32645 MiB
Feature Level : 0x0000B100
Capture size : 3840x2160
Offset : 0x0
Virtual Desktop : 3840x2160
[2024:03:05:16:59:57]: Info: Active GPU has HAGS disabled
[2024:03:05:16:59:57]: Info: Using realtime GPU priority
[2024:03:05:16:59:57]: Info: Desktop resolution [3840x2160]
[2024:03:05:16:59:57]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:05:16:59:57]: Info: Display refresh rate [120Hz]
[2024:03:05:16:59:57]: Info: Requested frame rate [60fps]
[2024:03:05:16:59:57]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:05:16:59:57]: Info: SDR color coding [Rec. 601]
[2024:03:05:16:59:57]: Info: Color depth: 8-bit
[2024:03:05:16:59:57]: Info: Color range: [JPEG]
[2024:03:05:17:00:27]: Info: Reverting display device settings.
[2024:03:05:17:00:27]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:17:00:27]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:17:00:27]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set display mode!
[2024:03:05:17:00:27]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to change topology configuration!
[2024:03:05:17:00:27]: Error: failed to switch back to the initial topology!
[2024:03:05:17:00:27]: Error: Failed to revert display device settings!
[2024:03:05:17:00:57]: Info: Reverting display device settings.
[2024:03:05:17:00:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:17:00:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set advanced color info!
[2024:03:05:17:00:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to set display mode!
[2024:03:05:17:00:57]: Error: [code: ERROR_ACCESS_DENIED, message: Access is denied] failed to change topology configuration!
[2024:03:05:17:00:57]: Error: failed to switch back to the initial topology!
[2024:03:05:17:00:57]: Error: Failed to revert display device settings!
[auto_resolution_remapping] -- [[{"received":"2540x1600","final":"3840x2400"}]]
[display_device_prep] -- [ensure_only_display]
[channels] -- [2]
[capture] -- [wgc]
[output_name] -- [{e4e51468-35d5-5833-8b43-41ab3f6abc91}]
[global_prep_cmd] -- [[{"do":"powershell.exe -executionpolicy bypass -file \"E:\\sources\\AudioSwapper\\AudioSwapper.ps1\"","elevated":"false","undo":"powershell.exe -executionpolicy bypass -file \"E:\\sources\\AudioSwapper\\AudioSwapper-Functions.ps1\" True"},{"do":"","elevated":"false","undo":"powershell.exe -executionpolicy bypass -windowstyle hidden -file \"E:\\sources\\PlayNiteWatcher\\PlayNiteWatcher-EndScript.ps1\" True"}]]
[2024:03:05:17:01:18]: Info: Sunshine version: 0.22.0.2881f6f.dirty
[2024:03:05:17:01:18]: Info: available display devices:
DEVICE ID: {0719b4f5-6ded-54b1-9ce6-f4b1e2c33be7}
DISPLAY NAME: NOT AVAILABLE
FRIENDLY NAME: LG TV SSCR2
DEVICE STATE: INACTIVE
HDR STATE: UNKNOWN
-----------------------
DEVICE ID: {e4e51468-35d5-5833-8b43-41ab3f6abc91}
DISPLAY NAME: \\.\DISPLAY9
FRIENDLY NAME: IDD HDR
DEVICE STATE: PRIMARY
HDR STATE: ENABLED
[2024:03:05:17:01:18]: Info: Loading persistent display device settings.
[2024:03:05:17:01:18]: Info: Reverting display device settings.
[2024:03:05:17:01:20]: Info: Display device configuration reverted.
[2024:03:05:17:01:21]: Info: nvprefs: Opened undo file from previous improper termination
[2024:03:05:17:01:21]: Info: nvprefs: Restored OGL_CPL_PREFER_DXPRESENT for base profile
[2024:03:05:17:01:21]: Info: nvprefs: Restored global profile settings from undo file - deleting the file
[2024:03:05:17:01:21]: Info: nvprefs: No need to modify application profile settings
[2024:03:05:17:01:21]: Info: nvprefs: Changed OGL_CPL_PREFER_DXPRESENT to OGL_CPL_PREFER_DXPRESENT_PREFER_ENABLED for base profile
[2024:03:05:17:01:21]: Info: System tray created
[2024:03:05:17:01:21]: Info: Compiling shaders...
[2024:03:05:17:01:21]: Info: Compiled shaders
[2024:03:05:17:01:21]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //
[2024:03:05:17:01:21]: Info: Trying encoder [nvenc]
[2024:03:05:17:01:21]: Info: ddprobe.exe [1] [] returned: 0x887A0004
[2024:03:05:17:01:21]: Info: ddprobe.exe [2] [] returned: 0x00000000
[2024:03:05:17:01:21]: Info: Set GPU preference: 2
[2024:03:05:17:01:21]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32645 MiB
Feature Level : 0x0000B100
Capture size : 3840x2160
Offset : 0x0
Virtual Desktop : 3840x2160
[2024:03:05:17:01:21]: Info: Active GPU has HAGS enabled
[2024:03:05:17:01:21]: Info: Using realtime GPU priority
[2024:03:05:17:01:21]: Info: Desktop resolution [3840x2160]
[2024:03:05:17:01:21]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]
[2024:03:05:17:01:21]: Info: Display refresh rate [120Hz]
[2024:03:05:17:01:21]: Info: Requested frame rate [60fps]
[2024:03:05:17:01:21]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020
Bits Per Color : 12
Red Primary : [0.639648,0.330078]
Green Primary : [0.299805,0.599609]
Blue Primary : [0.150391,0.0595703]
White Point : [0.3125,0.329102]
Min Luminance : 0.01 nits
Max Luminance : 1499 nits
Max Full Luminance : 799 nits
[2024:03:05:17:01:21]: Info: SDR color coding [Rec. 601]
[2024:03:05:17:01:21]: Info: Color depth: 8-bit
[2024:03:05:17:01:21]: Info: Color range: [JPEG]
[2024:03:05:17:01:21]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:05:17:01:21]: Info: SDR color coding [Rec. 601]
[2024:03:05:17:01:21]: Info: Color depth: 8-bit
[2024:03:05:17:01:21]: Info: Color range: [JPEG]
[2024:03:05:17:01:21]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:05:17:01:21]: Info: SDR color coding [Rec. 601]
[2024:03:05:17:01:21]: Info: Color depth: 8-bit
[2024:03:05:17:01:21]: Info: Color range: [JPEG]
[2024:03:05:17:01:21]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:05:17:01:21]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32645 MiB
Feature Level : 0x0000B100
Capture size : 3840x2160
Offset : 0x0
Virtual Desktop : 3840x2160
[2024:03:05:17:01:21]: Info: Active GPU has HAGS enabled
[2024:03:05:17:01:21]: Info: Using realtime GPU priority
[2024:03:05:17:01:21]: Info: Desktop resolution [3840x2160]
[2024:03:05:17:01:21]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]
[2024:03:05:17:01:21]: Info: Display refresh rate [120Hz]
[2024:03:05:17:01:21]: Info: Requested frame rate [60fps]
[2024:03:05:17:01:21]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020
Bits Per Color : 12
Red Primary : [0.639648,0.330078]
Green Primary : [0.299805,0.599609]
Blue Primary : [0.150391,0.0595703]
White Point : [0.3125,0.329102]
Min Luminance : 0.01 nits
Max Luminance : 1499 nits
Max Full Luminance : 799 nits
[2024:03:05:17:01:21]: Info: HDR color coding [Rec. 2020 + SMPTE 2084 PQ]
[2024:03:05:17:01:21]: Info: Color depth: 10-bit
[2024:03:05:17:01:21]: Info: Color range: [JPEG]
[2024:03:05:17:01:21]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:05:17:01:21]: Info: HDR color coding [Rec. 2020 + SMPTE 2084 PQ]
[2024:03:05:17:01:21]: Info: Color depth: 10-bit
[2024:03:05:17:01:21]: Info: Color range: [JPEG]
[2024:03:05:17:01:21]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:05:17:01:22]: Info:
[2024:03:05:17:01:22]: Info: // Ignore any errors mentioned above, they are not relevant. //
[2024:03:05:17:01:22]: Info:
[2024:03:05:17:01:22]: Info: Found H.264 encoder: h264_nvenc [nvenc]
[2024:03:05:17:01:22]: Info: Found HEVC encoder: hevc_nvenc [nvenc]
[2024:03:05:17:01:22]: Info: Found AV1 encoder: av1_nvenc [nvenc]
[2024:03:05:17:01:22]: Info: Registered Sunshine mDNS service
To replicate, have it display swap and then do a forced reboot, which prevents Sunshine from gracefully ending everything. You won't be able to sign back in with Sunshine anymore, it just shows the PC as disconnected until you log back in locally again.
Current behavior is that we allow people to sign in with "Desktop" from hard reboots.
Nevermind, I figured it out. I did a BIOS update and it re-enabled my iGPU again, false alarm.
I tried the hard reboot test again, it works, but it doesn't revert back to the original settings. And when starting the stream again, it uses the current settings of the PC as the restore point. I'd recommend having it restore the old settings first before it attempts to save the new settings or some other type of system to detect and remediate that scenario.
That is one advantage my scripts have, they always restore when the stream is ended and since it is not dynamic, there is no case where it could accidentally save the current machines settings as the true restore point when it shouldn't be.
And when starting the stream again, it uses the current settings of the PC as the restore point.
@Nonary That should not be happening :/. I allow to start streaming settings without restoring initial ones completely in some cases, but I always keep the initial settings as the "go back" target. I was re-writting stuff for the 4th time, maybe I missed something.
Can you be more explicit about what exactly has failed to revert? Or maybe, if you can, enable debug logs and paste them here. Before the hard reboot and after the hard reboot. There it will be logged exactly what is being changed.
And when starting the stream again, it uses the current settings of the PC as the restore point.
@Nonary That should not be happening :/. I allow to start streaming settings without restoring initial ones completely in some cases, but I always keep the initial settings as the "go back" target. I was re-writting stuff for the 4th time, maybe I missed something.
Can you be more explicit about what exactly has failed to revert? Or maybe, if you can, enable debug logs and paste them here. Before the hard reboot and after the hard reboot. There it will be logged exactly what is being changed.
Now I cant seem to replicate the issue.... so I guess it was just a fluke.
Anyways rebooting actually purges the log so it wouldn't have been helpful I guess.
Seems to be working well for me, I am testing it with IDD Sample Driver which has a bug with HDR at the moment where it can have overblown colors until you toggle HDR on and off again. My HDR script takes care of that by always turning off HDR and then back on, but I will keep track of that and see if thats necessary to do within Sunshine or not....
My HDR script takes care of that by always turning off HDR and then back on, but I will keep track of that and see if thats necessary to do within Sunshine or not....
I do the same here as well. The logic boils down to:
- Switch displays on/off.
- Check if newly activated display has HDR support.
- Wait 1.5s (arbitrary timeout that seems to work) if we have newly activated displays.
- Toggle the HDR state
On->Off->On
orOff->On->Off
for newly activated displays.
Apparently, with IDD HDR the colors are sometimes also blown out when the HDR is off, so Off->On->Off
is also needed :/
Some more testing, it looks like it fails to change my displays the moment my LG TV goes into a deep sleep.
[2024:03:07:08:44:42]: Info: Sunshine version: 0.22.0.391dcf6.dirty
[2024:03:07:08:44:42]: Info: available display devices:
DEVICE ID: {0719b4f5-6ded-54b1-9ce6-f4b1e2c33be7}
DISPLAY NAME: NOT AVAILABLE
FRIENDLY NAME: LG TV SSCR2
DEVICE STATE: INACTIVE
HDR STATE: UNKNOWN
-----------------------
DEVICE ID: {e4e51468-35d5-5833-8b43-41ab3f6abc91}
DISPLAY NAME: \\.\DISPLAY5
FRIENDLY NAME: IDD HDR
DEVICE STATE: PRIMARY
HDR STATE: DISABLED
[2024:03:07:08:44:42]: Info: Loading persistent display device settings.
[2024:03:07:08:44:42]: Info: Reverting display device settings.
[2024:03:07:08:44:42]: Error: failed to change topology due to Windows bug!
[2024:03:07:08:44:42]: Error: failed to switch back to the initial topology!
[2024:03:07:08:44:42]: Error: Failed to revert display device settings!
[2024:03:07:08:44:42]: Info: nvprefs: No need to modify application profile settings
[2024:03:07:08:44:42]: Info: nvprefs: Changed OGL_CPL_PREFER_DXPRESENT to OGL_CPL_PREFER_DXPRESENT_PREFER_ENABLED for base profile
[2024:03:07:08:44:42]: Info: Compiling shaders...
[2024:03:07:08:44:42]: Info: Compiled shaders
[2024:03:07:08:44:42]: Debug: Stereo: supported
[2024:03:07:08:44:42]: Debug: Surround 5.1: supported
[2024:03:07:08:44:42]: Debug: Surround 7.1: supported
[2024:03:07:08:44:42]: Debug: Stereo: supported
[2024:03:07:08:44:42]: Debug: Surround 5.1: supported
[2024:03:07:08:44:42]: Debug: Surround 7.1: supported
[2024:03:07:08:44:42]: Info: System tray created
[2024:03:07:08:44:42]: Debug: System tray loop
[2024:03:07:08:44:42]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Debug: Stereo: supported
[2024:03:07:08:44:43]: Debug: Surround 5.1: supported
[2024:03:07:08:44:43]: Debug: Surround 7.1: supported
[2024:03:07:08:44:43]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //
[2024:03:07:08:44:43]: Info: Trying encoder [nvenc]
[2024:03:07:08:44:43]: Info: ddprobe.exe [1] [\\.\DISPLAY5] returned: 0x00000000
[2024:03:07:08:44:43]: Info: Set GPU preference: 1
[2024:03:07:08:44:43]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:44:43]: Info: Active GPU has HAGS enabled
[2024:03:07:08:44:43]: Info: Using realtime GPU priority
[2024:03:07:08:44:43]: Info: Desktop resolution [640x480]
[2024:03:07:08:44:43]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:44:43]: Info: Display refresh rate [60Hz]
[2024:03:07:08:44:43]: Info: Requested frame rate [60fps]
[2024:03:07:08:44:43]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:44:43]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:44:43]: Info: Color depth: 8-bit
[2024:03:07:08:44:43]: Info: Color range: [JPEG]
[2024:03:07:08:44:43]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:44:43]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:44:43]: Debug: NvEnc: idr frame 1
[2024:03:07:08:44:43]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:44:43]: Info: Color depth: 8-bit
[2024:03:07:08:44:43]: Info: Color range: [JPEG]
[2024:03:07:08:44:43]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:44:43]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:44:43]: Debug: NvEnc: idr frame 1
[2024:03:07:08:44:43]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:44:43]: Info: Color depth: 8-bit
[2024:03:07:08:44:43]: Info: Color range: [JPEG]
[2024:03:07:08:44:43]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:44:43]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:44:43]: Debug: NvEnc: idr frame 1
[2024:03:07:08:44:43]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:44:43]: Info: Active GPU has HAGS enabled
[2024:03:07:08:44:43]: Info: Using realtime GPU priority
[2024:03:07:08:44:43]: Info: Desktop resolution [640x480]
[2024:03:07:08:44:43]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:44:43]: Info: Display refresh rate [60Hz]
[2024:03:07:08:44:43]: Info: Requested frame rate [60fps]
[2024:03:07:08:44:43]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:44:43]: Info: SDR color coding [Rec. 709]
[2024:03:07:08:44:43]: Info: Color depth: 10-bit
[2024:03:07:08:44:43]: Info: Color range: [JPEG]
[2024:03:07:08:44:43]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:44:43]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:07:08:44:43]: Debug: NvEnc: idr frame 1
[2024:03:07:08:44:43]: Info: SDR color coding [Rec. 709]
[2024:03:07:08:44:43]: Info: Color depth: 10-bit
[2024:03:07:08:44:43]: Info: Color range: [JPEG]
[2024:03:07:08:44:43]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:44:43]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:07:08:44:43]: Debug: NvEnc: idr frame 1
[2024:03:07:08:44:43]: Info:
[2024:03:07:08:44:43]: Info: // Ignore any errors mentioned above, they are not relevant. //
[2024:03:07:08:44:43]: Info:
[2024:03:07:08:44:43]: Debug: ------ h264 ------
[2024:03:07:08:44:43]: Debug: PASSED: supported
[2024:03:07:08:44:43]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:44:43]: Debug: CBR: supported
[2024:03:07:08:44:43]: Debug: DYNAMIC_RANGE: unsupported
[2024:03:07:08:44:43]: Debug: VUI_PARAMETERS: supported
[2024:03:07:08:44:43]: Debug: -------------------
[2024:03:07:08:44:43]: Info: Found H.264 encoder: h264_nvenc [nvenc]
[2024:03:07:08:44:43]: Debug: ------ hevc ------
[2024:03:07:08:44:43]: Debug: PASSED: supported
[2024:03:07:08:44:43]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:44:43]: Debug: CBR: supported
[2024:03:07:08:44:43]: Debug: DYNAMIC_RANGE: supported
[2024:03:07:08:44:43]: Debug: VUI_PARAMETERS: supported
[2024:03:07:08:44:43]: Debug: -------------------
[2024:03:07:08:44:43]: Info: Found HEVC encoder: hevc_nvenc [nvenc]
[2024:03:07:08:44:43]: Debug: ------ av1 ------
[2024:03:07:08:44:43]: Debug: PASSED: supported
[2024:03:07:08:44:43]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:44:43]: Debug: CBR: supported
[2024:03:07:08:44:43]: Debug: DYNAMIC_RANGE: supported
[2024:03:07:08:44:43]: Debug: VUI_PARAMETERS: unsupported
[2024:03:07:08:44:43]: Debug: -------------------
[2024:03:07:08:44:43]: Info: Found AV1 encoder: av1_nvenc [nvenc]
[2024:03:07:08:44:43]: Info: Configuration UI available at [https://localhost:47990]
[2024:03:07:08:44:44]: Debug: METHOD :: GET
[2024:03:07:08:44:44]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:44]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:44]: Debug: Host -- localhost:47990
[2024:03:07:08:44:44]: Debug: Accept -- */*
[2024:03:07:08:44:44]: Debug: Connection -- keep-alive
[2024:03:07:08:44:44]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:44]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:44]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:44:44]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:44:44]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:44]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:44:44]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: METHOD :: GET
[2024:03:07:08:44:44]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:44]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:44]: Debug: Host -- localhost:47990
[2024:03:07:08:44:44]: Debug: Accept -- */*
[2024:03:07:08:44:44]: Debug: Connection -- keep-alive
[2024:03:07:08:44:44]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:44]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:44]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:44:44]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:44:44]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:44]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:44:44]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: METHOD :: GET
[2024:03:07:08:44:44]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:44]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:44]: Debug: Host -- localhost:47990
[2024:03:07:08:44:44]: Debug: Accept -- */*
[2024:03:07:08:44:44]: Debug: Connection -- keep-alive
[2024:03:07:08:44:44]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:44]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:44]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:44:44]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:44:44]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:44]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:44:44]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: METHOD :: GET
[2024:03:07:08:44:44]: Debug: DESTINATION :: /troubleshooting
[2024:03:07:08:44:44]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Dest -- document
[2024:03:07:08:44:44]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:44]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Mode -- navigate
[2024:03:07:08:44:44]: Debug: Connection -- keep-alive
[2024:03:07:08:44:44]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Site -- none
[2024:03:07:08:44:44]: Debug: Accept -- text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[2024:03:07:08:44:44]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: METHOD :: GET
[2024:03:07:08:44:44]: Debug: DESTINATION :: /assets/troubleshooting-ff4f1aeb.js
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:44]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:44]: Debug: Connection -- keep-alive
[2024:03:07:08:44:44]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:44]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:44]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:44]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:44]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:44]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:44]: Debug: Accept -- */*
[2024:03:07:08:44:44]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:44]: Debug: [--]
[2024:03:07:08:44:45]: Info: Web UI: [192.168.0.106] -- not authorized
[2024:03:07:08:44:45]: Info: Web UI: [192.168.0.106] -- not authorized
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-63b51ba4.js
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/Navbar-48ec9d0d.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-56074fbc.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/Navbar-4fa05ff0.js
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /api/config
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /images/logo-sunshine-45.png
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- image
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- image/webp,image/avif,image/jxl,image/heic,image/heic-sequence,video/*;q=0.8,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- document
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- navigate
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- none
[2024:03:07:08:44:45]: Debug: Accept -- text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/fa-solid-900-9fc85f3a.woff2
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /images/logo-sunshine-45.png
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- image
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- image/webp,image/avif,image/jxl,image/heic,image/heic-sequence,video/*;q=0.8,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/index-4db940ef.js
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-56074fbc.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/ResourceCard-85906521.js
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/fa-regular-400-2bccecf0.woff2
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /api/config
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Info: Registered Sunshine mDNS service
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/Navbar-48ec9d0d.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- document
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- navigate
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- none
[2024:03:07:08:44:45]: Debug: Accept -- text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /images/logo-sunshine-45.png
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- image
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- image/webp,image/avif,image/jxl,image/heic,image/heic-sequence,video/*;q=0.8,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/Navbar-48ec9d0d.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/index-4db940ef.js
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-56074fbc.css
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /api/config
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/fa-solid-900-9fc85f3a.woff2
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/fa-brands-400-3a8924cd.woff2
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: METHOD :: GET
[2024:03:07:08:44:45]: Debug: DESTINATION :: /assets/fa-regular-400-2bccecf0.woff2
[2024:03:07:08:44:45]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:45]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:45]: Debug: Connection -- keep-alive
[2024:03:07:08:44:45]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:45]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:45]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:45]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:45]: Debug: Accept -- */*
[2024:03:07:08:44:45]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:45]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /troubleshooting
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- document
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- navigate
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /assets/Navbar-48ec9d0d.css
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /assets/troubleshooting-ff4f1aeb.js
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-56074fbc.css
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /api/config
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /images/logo-sunshine-45.png
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- image
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- image/webp,image/avif,image/jxl,image/heic,image/heic-sequence,video/*;q=0.8,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /assets/fa-solid-900-9fc85f3a.woff2
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: METHOD :: GET
[2024:03:07:08:44:46]: Debug: DESTINATION :: /assets/fa-regular-400-2bccecf0.woff2
[2024:03:07:08:44:46]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:46]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:46]: Debug: Connection -- keep-alive
[2024:03:07:08:44:46]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:46]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:46]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:46]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:46]: Debug: Accept -- */*
[2024:03:07:08:44:46]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:46]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /troubleshooting
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- document
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- navigate
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /assets/Navbar-48ec9d0d.css
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /assets/troubleshooting-ff4f1aeb.js
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- script
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Origin -- https://ambidex.local:47990
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Accept -- */*
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /assets/_plugin-vue_export-helper-56074fbc.css
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- style
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- text/css,*/*;q=0.1
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /assets/fa-solid-900-9fc85f3a.woff2
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- */*
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /images/logo-sunshine-45.png
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- image
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- image/webp,image/avif,image/jxl,image/heic,image/heic-sequence,video/*;q=0.8,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /api/config
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- */*
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- */*
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: METHOD :: GET
[2024:03:07:08:44:47]: Debug: DESTINATION :: /assets/fa-regular-400-2bccecf0.woff2
[2024:03:07:08:44:47]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Dest -- font
[2024:03:07:08:44:47]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Mode -- no-cors
[2024:03:07:08:44:47]: Debug: Connection -- keep-alive
[2024:03:07:08:44:47]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:47]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:47]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:47]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:47]: Debug: Accept -- */*
[2024:03:07:08:44:47]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:47]: Debug: [--]
[2024:03:07:08:44:52]: Debug: METHOD :: GET
[2024:03:07:08:44:52]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:52]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:52]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:52]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:52]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:52]: Debug: Connection -- keep-alive
[2024:03:07:08:44:52]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:52]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:52]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:52]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:52]: Debug: Accept -- */*
[2024:03:07:08:44:52]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:52]: Debug: [--]
[2024:03:07:08:44:52]: Debug: [--]
[2024:03:07:08:44:57]: Debug: METHOD :: GET
[2024:03:07:08:44:57]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:44:57]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:44:57]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:44:57]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:44:57]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:44:57]: Debug: Connection -- keep-alive
[2024:03:07:08:44:57]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:44:57]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:44:57]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:44:57]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:44:57]: Debug: Accept -- */*
[2024:03:07:08:44:57]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:44:57]: Debug: [--]
[2024:03:07:08:44:57]: Debug: [--]
[2024:03:07:08:45:00]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:00]: Debug: METHOD :: GET
[2024:03:07:08:45:00]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:00]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:00]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:00]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:00]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:00]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:00]: Debug: uuid -- d1761d9448274f7eb567fab3c38f2fcf
[2024:03:07:08:45:00]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:00]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:00]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:00]: Debug: METHOD :: GET
[2024:03:07:08:45:00]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:00]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:00]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:00]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:00]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:00]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:00]: Debug: uuid -- 80a372d462dc48f2973ef144f565b669
[2024:03:07:08:45:00]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:00]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:00]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:00]: Debug: METHOD :: GET
[2024:03:07:08:45:00]: Debug: DESTINATION :: /applist
[2024:03:07:08:45:00]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:00]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:00]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:00]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:00]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:00]: Debug: uuid -- 5c298dffd49f4aaf9253bf97943a9bab
[2024:03:07:08:45:00]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:00]: Debug: [--]
[2024:03:07:08:45:02]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:02]: Debug: METHOD :: GET
[2024:03:07:08:45:02]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:02]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:02]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:02]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:02]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:02]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:02]: Debug: uuid -- 570ce9e94f7842a2a85b3f0fc116a100
[2024:03:07:08:45:02]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:02]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:02]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:02]: Debug: METHOD :: GET
[2024:03:07:08:45:02]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:02]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:02]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:02]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:02]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:02]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:02]: Debug: uuid -- 72af6b4ab71a4889b619dbe09d59028f
[2024:03:07:08:45:02]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:02]: Debug: METHOD :: GET
[2024:03:07:08:45:02]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:02]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:02]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:02]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:02]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:02]: Debug: Connection -- keep-alive
[2024:03:07:08:45:02]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:02]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:02]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:02]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:02]: Debug: Accept -- */*
[2024:03:07:08:45:02]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:02]: Debug: [--]
[2024:03:07:08:45:03]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:03]: Debug: METHOD :: GET
[2024:03:07:08:45:03]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:03]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:03]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:03]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:03]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:03]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:03]: Debug: [--]
[2024:03:07:08:45:03]: Debug: uuid -- a72872c927744a3f9282a56fdf25b1f4
[2024:03:07:08:45:03]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:03]: Debug: [--]
[2024:03:07:08:45:03]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:03]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:03]: Debug: METHOD :: GET
[2024:03:07:08:45:03]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:03]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:03]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:03]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:03]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:03]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:03]: Debug: [--]
[2024:03:07:08:45:03]: Debug: uuid -- 509fb59f43f54bf19fa67f4cc33bf873
[2024:03:07:08:45:03]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:03]: Debug: [--]
[2024:03:07:08:45:04]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:04]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:04]: Debug: METHOD :: GET
[2024:03:07:08:45:04]: Debug: DESTINATION :: /launch
[2024:03:07:08:45:04]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:04]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:04]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:04]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:04]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:04]: Debug: [--]
[2024:03:07:08:45:04]: Debug: gcpersist -- 1
[2024:03:07:08:45:04]: Debug: localAudioPlayMode -- 1
[2024:03:07:08:45:04]: Debug: gcmap -- 1
[2024:03:07:08:45:04]: Debug: remoteControllersBitmap -- 1
[2024:03:07:08:45:04]: Debug: rikeyid -- 370297101
[2024:03:07:08:45:04]: Debug: surroundAudioInfo -- 196610
[2024:03:07:08:45:04]: Debug: rikey -- f6ea238e0d3df413a6d41b063e34b6c1
[2024:03:07:08:45:04]: Debug: sops -- 0
[2024:03:07:08:45:04]: Debug: mode -- 2560x1600x60
[2024:03:07:08:45:04]: Debug: appid -- 881448767
[2024:03:07:08:45:04]: Debug: uuid -- d6ab38a6c2424f0883aa2f607d16e3bd
[2024:03:07:08:45:04]: Debug: additionalStates -- 1
[2024:03:07:08:45:04]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:04]: Debug: [--]
[2024:03:07:08:45:04]: Info: Applying configuration to the display device.
[2024:03:07:08:45:04]: Debug: Capturing audio sink before changing display
[2024:03:07:08:45:04]: Debug: Stereo: supported
[2024:03:07:08:45:04]: Debug: Surround 5.1: supported
[2024:03:07:08:45:04]: Debug: Surround 7.1: supported
[2024:03:07:08:45:04]: Debug: Stereo: supported
[2024:03:07:08:45:04]: Debug: Surround 5.1: supported
[2024:03:07:08:45:04]: Debug: Surround 7.1: supported
[2024:03:07:08:45:04]: Debug: Stereo: supported
[2024:03:07:08:45:04]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Debug: Stereo: supported
[2024:03:07:08:45:05]: Debug: Surround 5.1: supported
[2024:03:07:08:45:05]: Debug: Surround 7.1: supported
[2024:03:07:08:45:05]: Info: available display devices:
DEVICE ID: {0719b4f5-6ded-54b1-9ce6-f4b1e2c33be7}
DISPLAY NAME: NOT AVAILABLE
FRIENDLY NAME: LG TV SSCR2
DEVICE STATE: INACTIVE
HDR STATE: UNKNOWN
-----------------------
DEVICE ID: {e4e51468-35d5-5833-8b43-41ab3f6abc91}
DISPLAY NAME: \\.\DISPLAY5
FRIENDLY NAME: IDD HDR
DEVICE STATE: PRIMARY
HDR STATE: DISABLED
[2024:03:07:08:45:05]: Debug: current display topology:
[
[
{e4e51468-35d5-5833-8b43-41ab3f6abc91}
]
]
[2024:03:07:08:45:05]: Debug: changing display modes to:
{e4e51468-35d5-5833-8b43-41ab3f6abc91} -> 640x480x60
[2024:03:07:08:45:05]: Debug: no changes were made to display modes.
[2024:03:07:08:45:05]: Debug: changing hdr states to:
{e4e51468-35d5-5833-8b43-41ab3f6abc91} -> DISABLED
[2024:03:07:08:45:05]: Info: Display device configuration applied.
[2024:03:07:08:45:05]: Info: Encoder reenumeration is required
[2024:03:07:08:45:05]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //
[2024:03:07:08:45:05]: Info: Trying encoder [nvenc]
[2024:03:07:08:45:05]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:45:05]: Info: Active GPU has HAGS enabled
[2024:03:07:08:45:05]: Info: Using realtime GPU priority
[2024:03:07:08:45:05]: Info: Desktop resolution [640x480]
[2024:03:07:08:45:05]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:05]: Info: Display refresh rate [60Hz]
[2024:03:07:08:45:05]: Info: Requested frame rate [60fps]
[2024:03:07:08:45:05]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:45:05]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:05]: Info: Color depth: 8-bit
[2024:03:07:08:45:05]: Info: Color range: [JPEG]
[2024:03:07:08:45:05]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:45:05]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:05]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:05]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:05]: Info: Color depth: 8-bit
[2024:03:07:08:45:05]: Info: Color range: [JPEG]
[2024:03:07:08:45:06]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:45:06]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:06]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:06]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:06]: Info: Color depth: 8-bit
[2024:03:07:08:45:06]: Info: Color range: [JPEG]
[2024:03:07:08:45:06]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:45:06]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:06]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:06]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:45:06]: Info: Active GPU has HAGS enabled
[2024:03:07:08:45:06]: Info: Using realtime GPU priority
[2024:03:07:08:45:06]: Info: Desktop resolution [640x480]
[2024:03:07:08:45:06]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:06]: Info: Display refresh rate [60Hz]
[2024:03:07:08:45:06]: Info: Requested frame rate [60fps]
[2024:03:07:08:45:06]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:45:06]: Info: SDR color coding [Rec. 709]
[2024:03:07:08:45:06]: Info: Color depth: 10-bit
[2024:03:07:08:45:06]: Info: Color range: [JPEG]
[2024:03:07:08:45:06]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:45:06]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:07:08:45:06]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:06]: Info: SDR color coding [Rec. 709]
[2024:03:07:08:45:06]: Info: Color depth: 10-bit
[2024:03:07:08:45:06]: Info: Color range: [JPEG]
[2024:03:07:08:45:06]: Debug: NvEnc: requested encoded frame size 2.1 kB
[2024:03:07:08:45:06]: Info: NvEnc: created encoder P1 10-bit two-pass rfi
[2024:03:07:08:45:06]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:06]: Info:
[2024:03:07:08:45:06]: Info: // Ignore any errors mentioned above, they are not relevant. //
[2024:03:07:08:45:06]: Info:
[2024:03:07:08:45:06]: Debug: ------ h264 ------
[2024:03:07:08:45:06]: Debug: PASSED: supported
[2024:03:07:08:45:06]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:45:06]: Debug: CBR: supported
[2024:03:07:08:45:06]: Debug: DYNAMIC_RANGE: unsupported
[2024:03:07:08:45:06]: Debug: VUI_PARAMETERS: supported
[2024:03:07:08:45:06]: Debug: -------------------
[2024:03:07:08:45:06]: Info: Found H.264 encoder: h264_nvenc [nvenc]
[2024:03:07:08:45:06]: Debug: ------ hevc ------
[2024:03:07:08:45:06]: Debug: PASSED: supported
[2024:03:07:08:45:06]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:45:06]: Debug: CBR: supported
[2024:03:07:08:45:06]: Debug: DYNAMIC_RANGE: supported
[2024:03:07:08:45:06]: Debug: VUI_PARAMETERS: supported
[2024:03:07:08:45:06]: Debug: -------------------
[2024:03:07:08:45:06]: Info: Found HEVC encoder: hevc_nvenc [nvenc]
[2024:03:07:08:45:06]: Debug: ------ av1 ------
[2024:03:07:08:45:06]: Debug: PASSED: supported
[2024:03:07:08:45:06]: Debug: REF_FRAMES_RESTRICT: supported
[2024:03:07:08:45:06]: Debug: CBR: supported
[2024:03:07:08:45:06]: Debug: DYNAMIC_RANGE: supported
[2024:03:07:08:45:06]: Debug: VUI_PARAMETERS: unsupported
[2024:03:07:08:45:06]: Debug: -------------------
[2024:03:07:08:45:06]: Info: Found AV1 encoder: av1_nvenc [nvenc]
[2024:03:07:08:45:06]: Debug: Parsed target [powershell.exe] from command [powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper.ps1"]
[2024:03:07:08:45:06]: Debug: Resolved target [powershell.exe] to path ["C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe"]
[2024:03:07:08:45:06]: Info: Executing Do Cmd: [powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper.ps1"]
[2024:03:07:08:45:06]: Info: powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper.ps1" running with PID 28964
[2024:03:07:08:45:07]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:07]: Debug: METHOD :: GET
[2024:03:07:08:45:07]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:07]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:07]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:07]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:07]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:07]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Debug: uuid -- d17e34cae689483c949c68fd79e7049f
[2024:03:07:08:45:07]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Info: Executing [Desktop]
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 101 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [1]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: OPTIONS
[2024:03:07:08:45:07]: Debug: target :: rtsp://192.168.0.140:48010
[2024:03:07:08:45:07]: Debug: CSeq :: 1
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
OPTIONS
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 1
---End Response---
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 177 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [2]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: DESCRIBE
[2024:03:07:08:45:07]: Debug: target :: rtsp://192.168.0.140:48010
[2024:03:07:08:45:07]: Debug: CSeq :: 2
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Accept :: application/sdp
[2024:03:07:08:45:07]: Debug: If-Modified-Since :: Thu, 01 Jan 1970 00:00:00 GMT
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
DESCRIBE
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 2
a=x-ss-general.featureFlags:3
a=x-ss-general.encryptionSupported:5
a=x-ss-general.encryptionRequested:1
a=x-nv-video[0].refPicInvalidation:1
sprop-parameter-sets=AAAAAU
a=rtpmap:98 AV1/90000
a=fmtp:97 surround-params=21101
a=fmtp:97 surround-params=21101
a=fmtp:97 surround-params=642012453
a=fmtp:97 surround-params=660012345
a=fmtp:97 surround-params=85301245367
a=fmtp:97 surround-params=88001234567
---End Response---
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 189 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [3]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: SETUP
[2024:03:07:08:45:07]: Debug: target :: streamid=audio/0/0
[2024:03:07:08:45:07]: Debug: CSeq :: 3
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Transport :: unicast;X-GS-ClientPort=50000-50001
[2024:03:07:08:45:07]: Debug: If-Modified-Since :: Thu, 01 Jan 1970 00:00:00 GMT
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
SETUP
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 3
Session: DEADBEEFCAFE;timeout = 90
Transport: server_port=48000
X-SS-Ping-Payload: CBAB3E2ED4B83DB8
---End Response---
[2024:03:07:08:45:07]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 212 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [4]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: SETUP
[2024:03:07:08:45:07]: Debug: target :: streamid=video/0/0
[2024:03:07:08:45:07]: Debug: CSeq :: 4
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Session :: DEADBEEFCAFE
[2024:03:07:08:45:07]: Debug: Transport :: unicast;X-GS-ClientPort=50000-50001
[2024:03:07:08:45:07]: Debug: If-Modified-Since :: Thu, 01 Jan 1970 00:00:00 GMT
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
SETUP
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 4
Session: DEADBEEFCAFE;timeout = 90
Transport: server_port=47998
X-SS-Ping-Payload: CBAB3E2ED4B83DB8
---End Response---
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 215 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [5]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: SETUP
[2024:03:07:08:45:07]: Debug: target :: streamid=control/13/0
[2024:03:07:08:45:07]: Debug: CSeq :: 5
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Session :: DEADBEEFCAFE
[2024:03:07:08:45:07]: Debug: Transport :: unicast;X-GS-ClientPort=50000-50001
[2024:03:07:08:45:07]: Debug: If-Modified-Since :: Thu, 01 Jan 1970 00:00:00 GMT
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
SETUP
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 5
Session: DEADBEEFCAFE;timeout = 90
Transport: server_port=47999
X-SS-Connect-Data: 2950118862
---End Response---
[2024:03:07:08:45:07]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:07]: Debug: METHOD :: GET
[2024:03:07:08:45:07]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:07]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:07]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:07]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:07]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:07]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Debug: uuid -- b5dadbac369a4ac68237293e271a8c64
[2024:03:07:08:45:07]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Debug: METHOD :: GET
[2024:03:07:08:45:07]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:07]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:07]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:07]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:07]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:07]: Debug: Connection -- keep-alive
[2024:03:07:08:45:07]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:07]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:07]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:07]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:07]: Debug: Accept -- */*
[2024:03:07:08:45:07]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Debug: [--]
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 1072 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 899 bytes
[2024:03:07:08:45:07]: Debug: Found Content-Length: 1379 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 480 bytes
[2024:03:07:08:45:07]: Debug: Found Content-Length: 1379 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [6]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload :: v=0
o=android 0 14 IN IPv4 192.168.0.140
s=NVIDIA Streaming Client
a=x-ml-general.featureFlags:1
a=x-nv-video[0].clientViewportWd:2560
a=x-nv-video[0].clientViewportHt:1600
a=x-nv-video[0].maxFPS:60
a=x-nv-video[0].packetSize:1392
a=x-nv-video[0].rateControlMode:4
a=x-nv-video[0].timeoutLengthMs:7000
a=x-nv-video[0].framesWithInvalidRefThreshold:0
a=x-nv-video[0].initialBitrateKbps:23250
a=x-nv-video[0].initialPeakBitrateKbps:23250
a=x-nv-vqos[0].bw.minimumBitrateKbps:23250
a=x-nv-vqos[0].bw.maximumBitrateKbps:23250
a=x-nv-vqos[0].fec.enable:1
a=x-nv-vqos[0].videoQualityScoreUpdateTime:5000
a=x-nv-vqos[0].qosTrafficType:5
a=x-nv-aqos.qosTrafficType:4
a=x-nv-general.featureFlags:167
a=x-nv-general.useReliableUdp:13
a=x-nv-vqos[0].fec.minRequiredFecPackets:2
a=x-nv-vqos[0].bllFec.enable:0
a=x-nv-vqos[0].drc.enable:0
a=x-nv-general.enableRecoveryMode:0
a=x-nv-video[0].videoEncoderSlicesPerFrame:1
a=x-nv-clientSupportHevc:1
a=x-nv-vqos[0].bitStreamFormat:1
a=x-nv-video[0].dynamicRangeMode:0
a=x-nv-video[0].maxNumReferenceFrames:0
a=x-nv-video[0].clientRefreshRateX100:0
a=x-nv-audio.surround.numChannels:2
a=x-nv-audio.surround.channelMask:3
a=x-nv-audio.surround.enable:0
a=x-nv-audio.surround.AudioQuality:0
a=x-nv-aqos.packetDuration:5
a=x-nv-video[0].encoderCscMode:0
t=0 0
m=video 47998
[2024:03:07:08:45:07]: Debug: command :: ANNOUNCE
[2024:03:07:08:45:07]: Debug: target :: streamid=control/13/0
[2024:03:07:08:45:07]: Debug: CSeq :: 6
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Session :: DEADBEEFCAFE
[2024:03:07:08:45:07]: Debug: Content-type :: application/sdp
[2024:03:07:08:45:07]: Debug: Content-length :: 1379
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
ANNOUNCE
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: Found Host: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Expecting incoming session connections from 192.168.0.106
[2024:03:07:08:45:07]: Info: nvprefs: No need to modify application profile settings
[2024:03:07:08:45:07]: Info: nvprefs: No need to modify global profile settings
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 6
---End Response---
[2024:03:07:08:45:07]: Debug: handle_read_plaintext(): Handle read of size: 96 bytes
[2024:03:07:08:45:07]: Debug: handle_plaintext_payload(): Handle read of size: 0 bytes
[2024:03:07:08:45:07]: Debug: type [REQUEST]
[2024:03:07:08:45:07]: Debug: sequence number [7]
[2024:03:07:08:45:07]: Debug: protocol :: RTSP/1.0
[2024:03:07:08:45:07]: Debug: payload ::
[2024:03:07:08:45:07]: Debug: command :: PLAY
[2024:03:07:08:45:07]: Debug: target :: /
[2024:03:07:08:45:07]: Debug: CSeq :: 7
[2024:03:07:08:45:07]: Debug: X-GS-ClientVersion :: 14
[2024:03:07:08:45:07]: Debug: Host :: 192.168.0.140
[2024:03:07:08:45:07]: Debug: Session :: DEADBEEFCAFE
[2024:03:07:08:45:07]: Debug: ---Begin MessageBuffer---
PLAY
---End MessageBuffer---
[2024:03:07:08:45:07]: Debug: ---Begin Response---
RTSP/1.0 200 OK
CSeq: 7
---End Response---
[2024:03:07:08:45:07]: Debug: Initialized new control stream session by IP address match [v1]
[2024:03:07:08:45:07]: Debug: Control local address [192.168.0.140]
[2024:03:07:08:45:07]: Debug: Control peer address [192.168.0.106:37343]
[2024:03:07:08:45:07]: Info: CLIENT CONNECTED
[2024:03:07:08:45:07]: Debug: type [IDX_REQUEST_IDR_FRAME]
[2024:03:07:08:45:07]: Debug: type [IDX_START_B]
[2024:03:07:08:45:07]: Debug: RAISE: 192.168.0.106:51544 :: VIDEO
[2024:03:07:08:45:07]: Debug: Received ping [v2] from 192.168.0.106:51544 [0100000038424433384234444532453342414243]
[2024:03:07:08:45:07]: Debug: Start capturing Video
[2024:03:07:08:45:07]: Debug: Detecting monitors...
[2024:03:07:08:45:07]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:07]: Debug: Output Name : \\.\DISPLAY5
AttachedToDesktop : yes
Resolution : 640x480
[2024:03:07:08:45:08]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:08]: Debug:
====== ADAPTER =====
Device Name : Microsoft Basic Render Driver
Device Vendor ID : 0x00001414
Device Device ID : 0x0000008C
Device Video Mem : 0 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:08]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:45:08]: Info: Active GPU has HAGS enabled
[2024:03:07:08:45:08]: Info: Using realtime GPU priority
[2024:03:07:08:45:08]: Info: Desktop resolution [640x480]
[2024:03:07:08:45:08]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:08]: Info: Display refresh rate [60Hz]
[2024:03:07:08:45:08]: Info: Requested frame rate [60fps]
[2024:03:07:08:45:08]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:45:08]: Info: Capture format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:08]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:08]: Info: Color depth: 8-bit
[2024:03:07:08:45:08]: Info: Color range: [MPEG]
[2024:03:07:08:45:08]: Debug: Sent HDR mode: false
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: NvEnc: requested encoded frame size 48.4 kB
[2024:03:07:08:45:08]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:08]: Debug: NvEnc: idr frame 1
[2024:03:07:08:45:08]: Debug: RAISE: 192.168.0.106:56068 :: AUDIO
[2024:03:07:08:45:08]: Debug: Received ping [v2] from 192.168.0.106:56068 [0200000038424433384234444532453342414243]
[2024:03:07:08:45:08]: Debug: Start capturing Audio
[2024:03:07:08:45:08]: Debug: Trying audio format [Stereo]
[2024:03:07:08:45:08]: Debug: Found audio format [Stereo]
[2024:03:07:08:45:08]: Debug: type [IDX_REQUEST_IDR_FRAME]
[2024:03:07:08:45:08]: Debug: NvEnc: idr frame 8
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-2]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [-4]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-4]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-6]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-5]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-6]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-12]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-10]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-11]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-11]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [-13]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-12]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-13]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [-6]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-12]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [5]
deltaY [-10]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-8]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-7]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:08]: Debug: --begin relative mouse move packet--
deltaX [6]
deltaY [-8]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [4]
deltaY [-2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [-2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [6]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [6]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [10]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [9]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [10]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [9]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [9]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-4]
deltaY [7]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-5]
deltaY [6]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-5]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-7]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-7]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-6]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-9]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-8]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-7]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-8]
deltaY [-1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-6]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-5]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-4]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [-2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-2]
deltaY [-3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [-4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-7]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-8]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-9]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-13]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-14]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-15]
deltaY [5]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-15]
deltaY [6]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-13]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-6]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-11]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-11]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-5]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-3]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:09]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [-1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin mouse button packet--
action [00000008]
button [01]
--end mouse button packet--
[2024:03:07:08:45:10]: Debug: --begin mouse button packet--
action [00000009]
button [01]
--end mouse button packet--
[2024:03:07:08:45:10]: Debug: Detecting monitors...
[2024:03:07:08:45:10]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:10]: Debug: Output Name : \\.\DISPLAY5
AttachedToDesktop : yes
Resolution : 640x480
[2024:03:07:08:45:10]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:10]: Debug:
====== ADAPTER =====
Device Name : Microsoft Basic Render Driver
Device Vendor ID : 0x00001414
Device Device ID : 0x0000008C
Device Video Mem : 0 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:45:10]: Info: Active GPU has HAGS enabled
[2024:03:07:08:45:10]: Info: Using realtime GPU priority
[2024:03:07:08:45:10]: Info: Desktop resolution [640x480]
[2024:03:07:08:45:10]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:10]: Info: Display refresh rate [60Hz]
[2024:03:07:08:45:10]: Info: Requested frame rate [60fps]
[2024:03:07:08:45:10]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Info: Capture format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:10]: Info: Color depth: 8-bit
[2024:03:07:08:45:10]: Info: Color range: [MPEG]
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: Sent HDR mode: false
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: NvEnc: requested encoded frame size 48.4 kB
[2024:03:07:08:45:10]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: NvEnc: idr frame 96
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [3]
deltaY [4]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [3]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [2]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [2]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [0]
--end relative mouse move packet--
[2024:03:07:08:45:10]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin relative mouse move packet--
deltaX [1]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin relative mouse move packet--
deltaX [0]
deltaY [1]
--end relative mouse move packet--
[2024:03:07:08:45:11]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8037]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:11]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8037]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8039]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8039]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8031]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8031]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8033]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8033]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8032]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:12]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8032]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8036]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: METHOD :: GET
[2024:03:07:08:45:13]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:13]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:13]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:13]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:13]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:13]: Debug: Connection -- keep-alive
[2024:03:07:08:45:13]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:13]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:13]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:13]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:13]: Debug: Accept -- */*
[2024:03:07:08:45:13]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:13]: Debug: [--]
[2024:03:07:08:45:13]: Debug: [--]
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8036]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8038]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8038]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [8039]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [8039]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:13]: Debug: Detecting monitors...
[2024:03:07:08:45:13]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:13]: Debug: Output Name : \\.\DISPLAY5
AttachedToDesktop : yes
Resolution : 640x480
[2024:03:07:08:45:14]: Debug:
====== ADAPTER =====
Device Name : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:14]: Debug:
====== ADAPTER =====
Device Name : Microsoft Basic Render Driver
Device Vendor ID : 0x00001414
Device Device ID : 0x0000008C
Device Video Mem : 0 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
====== OUTPUT ======
[2024:03:07:08:45:14]: Info:
Device Description : NVIDIA GeForce RTX 4090
Device Vendor ID : 0x000010DE
Device Device ID : 0x00002684
Device Video Mem : 24142 MiB
Device Sys Mem : 0 MiB
Share Sys Mem : 32679 MiB
Feature Level : 0x0000B100
Capture size : 640x480
Offset : 0x0
Virtual Desktop : 640x480
[2024:03:07:08:45:14]: Info: Active GPU has HAGS enabled
[2024:03:07:08:45:14]: Info: Using realtime GPU priority
[2024:03:07:08:45:14]: Info: Desktop resolution [640x480]
[2024:03:07:08:45:14]: Info: Desktop format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:14]: Info: Display refresh rate [60Hz]
[2024:03:07:08:45:14]: Info: Requested frame rate [60fps]
[2024:03:07:08:45:14]: Info:
Colorspace : DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Bits Per Color : 10
Red Primary : [0.694336,0.292969]
Green Primary : [0.274414,0.65918]
Blue Primary : [0.148438,0.0566406]
White Point : [0.313477,0.329102]
Min Luminance : 0.0006 nits
Max Luminance : 1015.27 nits
Max Full Luminance : 603.698 nits
[2024:03:07:08:45:14]: Info: Capture format [DXGI_FORMAT_B8G8R8A8_UNORM]
[2024:03:07:08:45:14]: Info: SDR color coding [Rec. 601]
[2024:03:07:08:45:14]: Info: Color depth: 8-bit
[2024:03:07:08:45:14]: Info: Color range: [MPEG]
[2024:03:07:08:45:14]: Debug: Sent HDR mode: false
[2024:03:07:08:45:14]: Debug: NvEnc: requested encoded frame size 48.4 kB
[2024:03:07:08:45:14]: Info: NvEnc: created encoder P1 two-pass rfi
[2024:03:07:08:45:14]: Debug: NvEnc: idr frame 157
[2024:03:07:08:45:14]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [80A2]
modifiers [02]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:14]: Debug: METHOD :: GET
[2024:03:07:08:45:14]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:14]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:14]: Debug: Host -- localhost:47990
[2024:03:07:08:45:14]: Debug: Accept -- */*
[2024:03:07:08:45:14]: Debug: Connection -- keep-alive
[2024:03:07:08:45:14]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:14]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:14]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:14]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:14]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:14]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:14]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:14]: Debug: [--]
[2024:03:07:08:45:14]: Debug: [--]
[2024:03:07:08:45:14]: Debug: METHOD :: GET
[2024:03:07:08:45:14]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:14]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:14]: Debug: Host -- localhost:47990
[2024:03:07:08:45:14]: Debug: Accept -- */*
[2024:03:07:08:45:14]: Debug: Connection -- keep-alive
[2024:03:07:08:45:14]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:14]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:14]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:14]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:14]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:14]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:14]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:14]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:14]: Debug: [--]
[2024:03:07:08:45:14]: Debug: [--]
[2024:03:07:08:45:14]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [80A4]
modifiers [06]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:14]: Debug: --begin keyboard packet--
keyAction [00000003]
keyCode [80A0]
modifiers [07]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:15]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [00A2]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:15]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [00A0]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:15]: Debug: --begin keyboard packet--
keyAction [00000004]
keyCode [00A4]
modifiers [00]
flags [00]
--end keyboard packet--
[2024:03:07:08:45:15]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:15]: Debug: METHOD :: GET
[2024:03:07:08:45:15]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:15]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:15]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:15]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:15]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:15]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Debug: uuid -- c35755cefea741d98272e989d467958a
[2024:03:07:08:45:15]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:15]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:15]: Debug: METHOD :: GET
[2024:03:07:08:45:15]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:15]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:15]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:15]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:15]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:15]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Debug: uuid -- de6e42c387204d4f82634ba0e0df0e31
[2024:03:07:08:45:15]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Info: CLIENT DISCONNECTED
[2024:03:07:08:45:15]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:15]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:15]: Debug: METHOD :: GET
[2024:03:07:08:45:15]: Debug: DESTINATION :: /applist
[2024:03:07:08:45:15]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:15]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:15]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:15]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:15]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Debug: uuid -- 38be2cffc62543d4ada55bc6931f6764
[2024:03:07:08:45:15]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:15]: Debug: [--]
[2024:03:07:08:45:15]: Debug: Waiting for video to end...
[2024:03:07:08:45:15]: Debug: Waiting for audio to end...
[2024:03:07:08:45:15]: Debug: Waiting for control to end...
[2024:03:07:08:45:15]: Debug: Resetting Input...
[2024:03:07:08:45:15]: Debug: Session ended
[2024:03:07:08:45:15]: Debug: Waiting for main listening thread to end...
[2024:03:07:08:45:15]: Debug: Waiting for main video thread to end...
[2024:03:07:08:45:15]: Debug: Waiting for main audio thread to end...
[2024:03:07:08:45:15]: Debug: Waiting for main control thread to end...
[2024:03:07:08:45:15]: Debug: All broadcasting threads ended
[2024:03:07:08:45:16]: Debug: METHOD :: GET
[2024:03:07:08:45:16]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:16]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:16]: Debug: Host -- localhost:47990
[2024:03:07:08:45:16]: Debug: Accept -- */*
[2024:03:07:08:45:16]: Debug: Connection -- keep-alive
[2024:03:07:08:45:16]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:16]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:16]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:16]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:16]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:16]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:16]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:16]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:16]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:16]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:16]: Debug: [--]
[2024:03:07:08:45:16]: Debug: [--]
[2024:03:07:08:45:17]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:17]: Debug: METHOD :: GET
[2024:03:07:08:45:17]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:17]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:17]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:17]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:17]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:17]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:17]: Debug: uuid -- d7a87c7e46aa452185ee5fe7527446f8
[2024:03:07:08:45:17]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:17]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:17]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:17]: Debug: METHOD :: GET
[2024:03:07:08:45:17]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:17]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:17]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:17]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:17]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:17]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:17]: Debug: uuid -- ef46416674ec45bc85089933a4fec2db
[2024:03:07:08:45:17]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:17]: Debug: METHOD :: GET
[2024:03:07:08:45:17]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:17]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:17]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:17]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:17]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:17]: Debug: Connection -- keep-alive
[2024:03:07:08:45:17]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:17]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:17]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:17]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:17]: Debug: Accept -- */*
[2024:03:07:08:45:17]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:17]: Debug: [--]
[2024:03:07:08:45:18]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:18]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:18]: Debug: METHOD :: GET
[2024:03:07:08:45:18]: Debug: DESTINATION :: /cancel
[2024:03:07:08:45:18]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:18]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:18]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:18]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:18]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:18]: Debug: [--]
[2024:03:07:08:45:18]: Debug: uuid -- dd9def7be2004fd8a643ef2212315fb8
[2024:03:07:08:45:18]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:18]: Debug: [--]
[2024:03:07:08:45:18]: Debug: Parsed target [powershell.exe] from command [powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper-Functions.ps1" True]
[2024:03:07:08:45:18]: Debug: Resolved target [powershell.exe] to path ["C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe"]
[2024:03:07:08:45:18]: Info: Executing Undo Cmd: [powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper-Functions.ps1" True]
[2024:03:07:08:45:18]: Info: powershell.exe -executionpolicy bypass -file "E:\sources\AudioSwapper\AudioSwapper-Functions.ps1" True running with PID 14820
[2024:03:07:08:45:18]: Debug: Parsed target [powershell.exe] from command [powershell.exe -executionpolicy bypass -windowstyle hidden -file "E:\sources\PlayNiteWatcher\PlayNiteWatcher-EndScript.ps1" True]
[2024:03:07:08:45:18]: Debug: Resolved target [powershell.exe] to path ["C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe"]
[2024:03:07:08:45:18]: Info: Executing Undo Cmd: [powershell.exe -executionpolicy bypass -windowstyle hidden -file "E:\sources\PlayNiteWatcher\PlayNiteWatcher-EndScript.ps1" True]
[2024:03:07:08:45:18]: Info: powershell.exe -executionpolicy bypass -windowstyle hidden -file "E:\sources\PlayNiteWatcher\PlayNiteWatcher-EndScript.ps1" True running with PID 19808
[2024:03:07:08:45:18]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:18]: Debug: METHOD :: GET
[2024:03:07:08:45:18]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:18]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:18]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:18]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:18]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:18]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:18]: Debug: [--]
[2024:03:07:08:45:18]: Debug: uuid -- e40d68e5c25b440fb87558b777caa810
[2024:03:07:08:45:18]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:18]: Debug: [--]
[2024:03:07:08:45:20]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:20]: Debug: METHOD :: GET
[2024:03:07:08:45:20]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:20]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:20]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:20]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:20]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:20]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:20]: Debug: [--]
[2024:03:07:08:45:20]: Debug: uuid -- 513dc9b2273e4bc6b95e9b4d47e2d6bc
[2024:03:07:08:45:20]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:20]: Debug: [--]
[2024:03:07:08:45:21]: Debug: METHOD :: GET
[2024:03:07:08:45:21]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:21]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:21]: Debug: Host -- localhost:47990
[2024:03:07:08:45:21]: Debug: Accept -- */*
[2024:03:07:08:45:21]: Debug: Connection -- keep-alive
[2024:03:07:08:45:21]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:21]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:21]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:21]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:21]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:21]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:21]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:21]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:21]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:21]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:21]: Debug: [--]
[2024:03:07:08:45:21]: Debug: [--]
[2024:03:07:08:45:22]: Debug: METHOD :: GET
[2024:03:07:08:45:22]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:22]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:22]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:22]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:22]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:22]: Debug: Connection -- keep-alive
[2024:03:07:08:45:22]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:22]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:22]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:22]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:22]: Debug: Accept -- */*
[2024:03:07:08:45:22]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:22]: Debug: [--]
[2024:03:07:08:45:22]: Debug: [--]
[2024:03:07:08:45:24]: Info: Reverting display device settings.
[2024:03:07:08:45:24]: Debug: same topology provided.
[2024:03:07:08:45:24]: Debug: changing back the HDR states to:
{e4e51468-35d5-5833-8b43-41ab3f6abc91} -> DISABLED
[2024:03:07:08:45:24]: Debug: changing back the display modes to:
{e4e51468-35d5-5833-8b43-41ab3f6abc91} -> 640x480x60
[2024:03:07:08:45:24]: Debug: no changes were made to display modes.
[2024:03:07:08:45:24]: Error: failed to change topology due to Windows bug!
[2024:03:07:08:45:24]: Error: failed to switch back to the initial topology!
[2024:03:07:08:45:24]: Error: Failed to revert display device settings!
[2024:03:07:08:45:24]: Info: Reverting display device settings.
[2024:03:07:08:45:24]: Error: failed to change topology due to Windows bug!
[2024:03:07:08:45:24]: Error: failed to switch back to the initial topology!
[2024:03:07:08:45:24]: Error: Failed to revert display device settings!
[2024:03:07:08:45:24]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:24]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:24]: Debug: METHOD :: GET
[2024:03:07:08:45:24]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:24]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:24]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:24]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:24]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:24]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:24]: Debug: [--]
[2024:03:07:08:45:24]: Debug: uuid -- 182af10a828f4a5a8214c01252ae9882
[2024:03:07:08:45:24]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:24]: Debug: [--]
[2024:03:07:08:45:25]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:25]: Debug: METHOD :: GET
[2024:03:07:08:45:25]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:25]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:25]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:25]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:25]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:25]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:25]: Debug: [--]
[2024:03:07:08:45:25]: Debug: uuid -- 63b44c50d8284886884b3856ccd41456
[2024:03:07:08:45:25]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:25]: Debug: [--]
[2024:03:07:08:45:25]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:25]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:25]: Debug: METHOD :: GET
[2024:03:07:08:45:25]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:25]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:25]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:25]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:25]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:25]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:25]: Debug: [--]
[2024:03:07:08:45:25]: Debug: uuid -- 52bf36441f6e4048878733175a43b2ed
[2024:03:07:08:45:25]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:25]: Debug: [--]
[2024:03:07:08:45:26]: Debug: METHOD :: GET
[2024:03:07:08:45:26]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:26]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:26]: Debug: Host -- localhost:47990
[2024:03:07:08:45:26]: Debug: Accept -- */*
[2024:03:07:08:45:26]: Debug: Connection -- keep-alive
[2024:03:07:08:45:26]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:26]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:26]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:26]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:26]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:26]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:26]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:26]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:26]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:26]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:26]: Debug: [--]
[2024:03:07:08:45:26]: Debug: [--]
[2024:03:07:08:45:27]: Debug: METHOD :: GET
[2024:03:07:08:45:27]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:27]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:27]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:27]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:27]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:27]: Debug: Connection -- keep-alive
[2024:03:07:08:45:27]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:27]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:27]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:27]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:27]: Debug: Accept -- */*
[2024:03:07:08:45:27]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:27]: Debug: [--]
[2024:03:07:08:45:27]: Debug: [--]
[2024:03:07:08:45:28]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:28]: Debug: METHOD :: GET
[2024:03:07:08:45:28]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:28]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:28]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:28]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:28]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:28]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:28]: Debug: [--]
[2024:03:07:08:45:28]: Debug: uuid -- 1bc6a0489c5d4a2e8d18a8b084ca817b
[2024:03:07:08:45:28]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:28]: Debug: [--]
[2024:03:07:08:45:29]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:29]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:29]: Debug: METHOD :: GET
[2024:03:07:08:45:29]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:29]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:29]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:29]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:29]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:29]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:29]: Debug: [--]
[2024:03:07:08:45:29]: Debug: uuid -- 91363a21ffa94a498cb913b8741ba086
[2024:03:07:08:45:29]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:29]: Debug: [--]
[2024:03:07:08:45:30]: Debug: METHOD :: GET
[2024:03:07:08:45:30]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:30]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:30]: Debug: Host -- localhost:47990
[2024:03:07:08:45:30]: Debug: Accept -- */*
[2024:03:07:08:45:30]: Debug: Connection -- keep-alive
[2024:03:07:08:45:30]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:30]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:30]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:30]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:30]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:30]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:30]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:30]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:30]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:30]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:30]: Debug: [--]
[2024:03:07:08:45:30]: Debug: [--]
[2024:03:07:08:45:31]: Debug: METHOD :: GET
[2024:03:07:08:45:31]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:31]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:31]: Debug: Host -- localhost:47990
[2024:03:07:08:45:31]: Debug: Accept -- */*
[2024:03:07:08:45:31]: Debug: Connection -- keep-alive
[2024:03:07:08:45:31]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:31]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:31]: Debug: sec-ch-ua -- "Chromium";v="122", "Not(A:Brand";v="24", "Microsoft Edge";v="122"
[2024:03:07:08:45:31]: Debug: sec-ch-ua-mobile -- ?0
[2024:03:07:08:45:31]: Debug: User-Agent -- Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0
[2024:03:07:08:45:31]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:31]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:31]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:31]: Debug: sec-ch-ua-platform -- "Windows"
[2024:03:07:08:45:31]: Debug: Referer -- https://localhost:47990/troubleshooting
[2024:03:07:08:45:31]: Debug: [--]
[2024:03:07:08:45:31]: Debug: [--]
[2024:03:07:08:45:32]: Debug: TUNNEL :: NONE
[2024:03:07:08:45:32]: Debug: METHOD :: GET
[2024:03:07:08:45:32]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:32]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:32]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:32]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:32]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:32]: Debug: Host -- 192.168.0.140:47989
[2024:03:07:08:45:32]: Debug: [--]
[2024:03:07:08:45:32]: Debug: uuid -- 29ea796b861845139fd669745ca7aa1d
[2024:03:07:08:45:32]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:32]: Debug: [--]
[2024:03:07:08:45:32]: Debug: /CN=NVIDIA GameStream Client -- verified
[2024:03:07:08:45:32]: Debug: TUNNEL :: HTTPS
[2024:03:07:08:45:32]: Debug: METHOD :: GET
[2024:03:07:08:45:32]: Debug: DESTINATION :: /serverinfo
[2024:03:07:08:45:32]: Debug: User-Agent -- Mozilla/5.0
[2024:03:07:08:45:32]: Debug: Accept-Language -- en-US,*
[2024:03:07:08:45:32]: Debug: Accept-Encoding -- gzip, deflate
[2024:03:07:08:45:32]: Debug: Connection -- Keep-Alive
[2024:03:07:08:45:32]: Debug: Host -- 192.168.0.140:47984
[2024:03:07:08:45:32]: Debug: [--]
[2024:03:07:08:45:32]: Debug: uuid -- 1966b126cc3c47c8b9bc5bb2b0fa2b76
[2024:03:07:08:45:32]: Debug: uniqueid -- 0123456789ABCDEF
[2024:03:07:08:45:32]: Debug: [--]
[2024:03:07:08:45:32]: Debug: METHOD :: GET
[2024:03:07:08:45:32]: Debug: DESTINATION :: /api/logs
[2024:03:07:08:45:32]: Debug: Authorization -- CREDENTIALS REDACTED
[2024:03:07:08:45:32]: Debug: Sec-Fetch-Dest -- empty
[2024:03:07:08:45:32]: Debug: User-Agent -- Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
[2024:03:07:08:45:32]: Debug: Sec-Fetch-Mode -- cors
[2024:03:07:08:45:32]: Debug: Connection -- keep-alive
[2024:03:07:08:45:32]: Debug: Accept-Encoding -- gzip, deflate, br
[2024:03:07:08:45:32]: Debug: Referer -- https://ambidex.local:47990/troubleshooting
[2024:03:07:08:45:32]: Debug: Accept-Language -- en-US,en;q=0.9
[2024:03:07:08:45:32]: Debug: Sec-Fetch-Site -- same-origin
[2024:03:07:08:45:32]: Debug: Accept -- */*
[2024:03:07:08:45:32]: Debug: Host -- ambidex.local:47990
[2024:03:07:08:45:32]: Debug: [--]
[2024:03:07:08:45:32]: Debug: [--]
Part of the reason for using virtual display is to workaround this issue, but it appears once that issue happens it can't even swap to the virtual display like it should. Log doesn't seem to be very detailed about it, just says can't do it because of Windows bug.
Thats pretty much a deal breaker though, so I hope this can be addressed in some way.