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
Activating debug2 logging of FusionInventory Agent 2.6 on Windows ...
debug2
Set-ItemProperty -Path 'HKLM:\SOFTWARE\FusionInventory-Agent' -Name debug -Value 2
... and running inventory ...
${TARGETDIR}\fusioninventory-agent.bat
... returns ...
Wide character in print at [...]\FusionInventory-Agent/perl/agent/FusionInventory/Agent/Logger/File.pm line 58.
fusioninventory-agent/lib/FusionInventory/Agent/Logger/File.pm
Line 58 in b839fd5
This is probably due to the debug2 logging containing the UTF-8 encoded XML inventory in HTTP traffic containing wide characters:
[Tue Nov 12 12:20:54 2024][debug2] [http client] sending message: <?xml version="1.0" encoding="UTF-8" ?> [...] <NAME>Intel® Software Installer</NAME>
Maybe the corresponding open statement has to be modified? E.g. from ...
open
Line 33 in b839fd5
if (!open $handle, '>:encoding(utf-8)', $self->{logfile}) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Activating
debug2
logging of FusionInventory Agent 2.6 on Windows ...... and running inventory ...
... returns ...
fusioninventory-agent/lib/FusionInventory/Agent/Logger/File.pm
Line 58 in b839fd5
... and returning an error code.
This is probably due to the
debug2
logging containing the UTF-8 encoded XML inventory in HTTP traffic containing wide characters:Maybe the corresponding
open
statement has to be modified? E.g. from ...fusioninventory-agent/lib/FusionInventory/Agent/Logger/File.pm
Line 33 in b839fd5
... to ...
The text was updated successfully, but these errors were encountered: