Created Debugging the plugin (markdown)

This commit is contained in:
hipersayanX 2021-05-26 19:02:24 -03:00
parent 57b4a7f440
commit 96243c7cb2

22
Debugging-the-plugin.md Normal file
View file

@ -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
```