mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-02-04 20:49:19 +01:00
21 lines
222 B
Perl
21 lines
222 B
Perl
package KasmVNC::Logger;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use v5.10;
|
|
use Data::Dumper;
|
|
|
|
sub new {
|
|
my ($class, $args) = @_;
|
|
my $self = bless {
|
|
}, $class;
|
|
}
|
|
|
|
sub warn {
|
|
my $self = shift;
|
|
|
|
say { *STDERR } @_;
|
|
}
|
|
|
|
1;
|