Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonathanstowe/log-syslog-native

Provide access to the Native syslog facility on Unix-like systems for Raku
https://github.com/jonathanstowe/log-syslog-native

logging raku syslog unix

Last synced: 25 days ago
JSON representation

Provide access to the Native syslog facility on Unix-like systems for Raku

Awesome Lists containing this project

README

        

# Log::Syslog::Native

Provide access to the Native syslog facility on Unix-like systems for Raku

![Build Status](https://github.com/jonathanstowe/Log-Syslog-Native/workflows/CI/badge.svg)

## Synopsis

```perl6
use Log::Syslog::Native;

my $logger = Log::Syslog::Native.new(facility => Log::Syslog::Native::Mail);

$logger.warning("Couldn't activate wormhole interface");
```

## Description

This provides a simple, perhaps naive,interface to the POSIX syslog facility
found on most Unix-like systems.

It should be enough to get you started with simple logging to your system's
log files, though exactly what files those might be and how they are logged
is a function of the system configuration and the exact logging software
that is being used.

This does not provide logging to a remote syslog server, nor does it provide
syslog style logging to platforms that do not provide a ''syslog()'' function
in their standard runtime library.

## Installation

Currently there is no dedicated test to determine whether your platform is
supported, the unit tests will simply fail horribly.

Assuming you have a working Rakudo installation you should be able to install this with *zef* :

# From the source directory

zef install .

# Remove installation

zef install Log::Syslog::Native

Other install mechanisms may be become available in the future.

## Support

Suggestions/patches are welcomed via github at:

https://github.com/jonathanstowe/Log-Syslog-Native/issues

I'm not able to test on a wide variety of platforms so any help there would be
appreciated.

Things that I know don't work as of the current release are:

* The built in sprintf is emulated because no varargs in NativeCall yet

Help with these is explicitly invited.

## Licence

This is free software.

Please see the [LICENCE](LICENCE) file in the distribution.

© Jonathan Stowe 2015, 2016, 2017, 2019, 2021