#! /usr/bin/env false use v6.d; enum Log::Level < Emergency Alert Critical Error Warning Notice Info Debug >; =begin pod =NAME Log::Level =VERSION 0.1.1 =AUTHOR Patrick Spek =head1 Description C is an C to allow for human-readable log levels in your code, as opposed to magic numbers that give little insight to people not familiar with the levels. The allowed values are: =item C =item C =item C =item C =item C =item C =item C =item C =begin LICENSE Copyright © 2020 This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see http://www.gnu.org/licenses/. =end LICENSE =end pod # vim: ft=raku noet sw=8 ts=8