We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Saving logs into file doesn't work properly.
To Reproduce Set logging to file
Expected behavior Logs saved in file should be at least similar to logs generated in terminal using flag --log-level.
--log-level
Comparison of outputs Logging level: Debug In file:
[14:38:05.900] - Logging started [14:38:06.216] - Using XTest as the event generator. [14:40:56.694] - Quitting Program
in terminal
$ antimicrox --log-level debug Debug: Socket's state: QLocalSocket::UnconnectedState ((null):0, (null)) Debug: Server name: "" ((null):0, (null)) Debug: Socket descriptor: -1 ((null):0, (null)) Debug: The connection hasn't been established: error text -> QLocalSocket::ServerNotFoundError error text 2 -> "QLocalSocket::connectToServer: Invalid name" ((null):0, (null)) Debug: Socket is not valid ((null):0, (null)) Debug: Socket's state: QLocalSocket::UnconnectedState ((null):0, (null)) Debug: Server name: "" ((null):0, (null)) Debug: Socket descriptor: -1 ((null):0, (null)) Debug: "/home/pawel/.local/share/antimicrox/icons" ((null):0, (null)) .....
The text was updated successfully, but these errors were encountered:
As a temporal solution logging into file can be done by editing file /usr/share/applicationsio.github.antimicrox.antimicrox.desktop
/usr/share/applicationsio.github.antimicrox.antimicrox.desktop
Simply change line:
Exec=antimicrox
to
Exec=antimicrox --log-level debug 2> /tmp/antimicrox.log
Sorry, something went wrong.
Update README.md - AntiMicroX#78, AntiMicroX#82
ac642c7
pktiuk
Successfully merging a pull request may close this issue.
Describe the bug
Saving logs into file doesn't work properly.
To Reproduce
Set logging to file
Expected behavior
Logs saved in file should be at least similar to logs generated in terminal using flag
--log-level
.Comparison of outputs
Logging level: Debug
In file:
in terminal
The text was updated successfully, but these errors were encountered: