如何在 Log4perl 中抑制输出到 stdout 和 stderr?

发布于 2024-08-02 02:31:01 字数 600 浏览 4 评论 0原文

我有这个子程序来初始化我的记录器:

sub initLogfiles{
    Log::Log4perl->easy_init($INFO); # We log all debug, info, warn, error and fatal messages.
        my $userlogappender = Log::Log4perl::Appender->new(
        "Log::Log4perl::Appender::File",
        filename => USERLOGFILE,
        mode     => "append",
        recreate => 1
    );
    my $userloglayout = Log::Log4perl::Layout::PatternLayout->new("%d;%m%n");
    $userlogappender->layout($userloglayout);
    $userlogger->add_appender($userlogappender);
}

我只想在我的日志文件中包含日志信息。 我如何防止它记录到标准输出?

I have this sub to initialize my logger:

sub initLogfiles{
    Log::Log4perl->easy_init($INFO); # We log all debug, info, warn, error and fatal messages.
        my $userlogappender = Log::Log4perl::Appender->new(
        "Log::Log4perl::Appender::File",
        filename => USERLOGFILE,
        mode     => "append",
        recreate => 1
    );
    my $userloglayout = Log::Log4perl::Layout::PatternLayout->new("%d;%m%n");
    $userlogappender->layout($userloglayout);
    $userlogger->add_appender($userlogappender);
}

I only want to have the loginfo in my logfile.
How do i prevent this from logging to stdout?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光清浅 2024-08-09 02:31:01

我找到了。
我必须将此行添加到我的子中:

$userlogger->additivity(0);

我在这里找到了答案: log4perl 常见问题解答

I found it.
I have to add this line to my sub:

$userlogger->additivity(0);

I found the answer here: log4perl FAQ

〗斷ホ乔殘χμё〖 2024-08-09 02:31:01

Log::Log4perl->easy_init() 使用 ScreenAppender 初始化库,这就是日志发送到 stdout 的原因。

删除它并添加以下内容以将所有日志(调试级别及以上)写入文件:

 Log::Log4perl->get_logger()->level($DEBUG);

Log::Log4perl->easy_init() initializes the library with a ScreenAppender, that's why the log are sent to stdout.

Remove it and add the following to write all logs (debug level and above) to file:

 Log::Log4perl->get_logger()->level($DEBUG);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文