How to Install and Uninstall perl-Log-Any-Adapter-Callback Package on openSuSE Tumbleweed

Last updated: September 20,2024

1. Install "perl-Log-Any-Adapter-Callback" package

This tutorial shows how to install perl-Log-Any-Adapter-Callback on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Log-Any-Adapter-Callback

2. Uninstall "perl-Log-Any-Adapter-Callback" package

Here is a brief guide to show you how to uninstall perl-Log-Any-Adapter-Callback on openSuSE Tumbleweed:

$ sudo zypper remove perl-Log-Any-Adapter-Callback

3. Information about the perl-Log-Any-Adapter-Callback package on openSuSE Tumbleweed

Information for package perl-Log-Any-Adapter-Callback:
------------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Log-Any-Adapter-Callback
Version : 0.102.0-2.1
Arch : noarch
Vendor : openSUSE
Installed Size : 31.5 KiB
Installed : No
Status : not installed
Source package : perl-Log-Any-Adapter-Callback-0.102.0-2.1.src
Upstream URL : https://metacpan.org/release/Log-Any-Adapter-Callback
Summary : (DEPRECATED)(ADOPTME) Send Log::Any logs to a subroutine
Description :
DEPRECATION NOTICE: Log::Any distribution since 1.708 comes with
Log::Any::Adapter::Capture which does the same thing. I'm deprecating this
adapter now.
This adapter lets you specify callback subroutine to be called by
Log::Any's logging methods (like $log->debug(), $log->error(), etc) and
detection methods (like $log->is_warning(), $log->is_fatal(), etc.).
This adapter is used for customized logging, and is mostly a convenient
construct to save a few lines of code. You could achieve the same effect by
creating a full Log::Any adapter class.
Your logging callback subroutine will be called with these arguments:
($method, $self, $format, @params)
where $method is the name of method (like "debug") and ($self, $format,
@params) are given by Log::Any.