From 96243c7cb2b52d5fd6d9df1d370cd11f7640c418 Mon Sep 17 00:00:00 2001 From: hipersayanX Date: Wed, 26 May 2021 19:02:24 -0300 Subject: [PATCH] Created Debugging the plugin (markdown) --- Debugging-the-plugin.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Debugging-the-plugin.md diff --git a/Debugging-the-plugin.md b/Debugging-the-plugin.md new file mode 100644 index 0000000..536da0b --- /dev/null +++ b/Debugging-the-plugin.md @@ -0,0 +1,22 @@ +You can turn on debugging comments with: + +``` +AkVCamManager set-loglevel 7 +``` + +When logging is on it will start puking a log of debug lines in the console and log files. +In Mac, the debug logs are located at _/tmp/AkVCamAssistant.log_ and _/tmp/AkVirtualCamera-*.log_. +In Windows, the debug logs are located at _C:\Windows\Temp\AkVCamAssistant.log_ and _C:\Users\User\AppData\Local\Temp\AkVirtualCamera-*.log_. +When you finished debugging the plugin, remember to turn it off again with: + +``` +AkVCamManager set-loglevel default +``` + +If you don't turn off the debug logs, it gonna eat all your disk space. +Finally, [use](https://github.com/webcamoid/akvirtualcamera/wiki/Usage-and-examples#examples) the virtual cameras as normal. +Also, you can get a resume of the virtual camera configurations in a parsable XML output with. + +``` +AkVCamManager dump +```