Hi,
I am using otrs 3.3.4. Earlier it was working fine but now suddenly there are too much logs in OTRS. Please have a look on the screenshot
What is the reason for this? How can I remove unnecessary logs?
Thanks in Advance!
Regards,
Gunjan
Detailed and unnecessary logs
Moderator: crythias
Detailed and unnecessary logs
You do not have the required permissions to view the files attached to this post.
-
- Znuny newbie
- Posts: 24
- Joined: 18 Dec 2013, 16:57
- Znuny Version: *.*.*
- Company: Znuny GmbH
- Location: Berlin
- Contact:
Re: Detailed and unnecessary logs
Hi Gunjan,
this log lines come from the cache backend and are only printed if the the debug mode of your system is active:
OTRS 3.3.4 Kernel/System/Cache.pm line 123:
OTRS 3.3.4 Kernel/System/Cache.pm line 164:
You might check your 'bin/cgi-bin/index.pl' there you can set the debug mode globally...
this log lines come from the cache backend and are only printed if the the debug mode of your system is active:
OTRS 3.3.4 Kernel/System/Cache.pm line 123:
Code: Select all
# debug
if ( $Self->{Debug} > 0 ) {
$Self->{LogObject}->Log(
Priority => 'notice',
Message => "Set Key:$Param{Key} TTL:$Param{TTL}!",
);
}
Code: Select all
if ( $Self->{Debug} > 0 ) {
$Self->{LogObject}->Log(
Priority => 'notice',
Message => "Get cached Key:$Param{Key}!",
);
}
Znuny4OTRS Extensions auf Github: https://github.com/znuny/
Znuny4OTRS - intl. Enterprise Services: https://znuny.com
Znuny4OTRS - intl. Enterprise Services: https://znuny.com
Re: Detailed and unnecessary logs
Thank you for the help.