// Telenor Inpli TFTP Server Module
//
// Copyright 2018 Telenor Inpli AS Norway
namespace libtftp
{
///
/// Syslog severity levels as specified by RFC5424
///
public enum ETftpLogSeverity
{
///
/// Emergency: system is unusable
///
Emergency = 0,
///
/// Alert: action must be taken immediately
///
Alert = 1,
///
/// Critical: critical conditions
///
Critical = 2,
///
/// Error: error conditions
///
Error = 3,
///
/// Warning: warning conditions
///
Warning = 4,
///
/// Notice: normal but significant condition
///
Notice = 5,
///
/// Informational: informational messages
///
Informational = 6,
///
/// Debug: debug-level messages
///
Debug = 7
}
}