memfaultd 1.26.1

Memfault daemon for embedded Linux systems. Observability, logging, crash reporting, and updating all in one service. Learn more at https://docs.memfault.com/
Documentation
//
// Copyright (c) Memfault, Inc.
// See License.txt for details
pub const LOG_LEVEL_EMERGENCY: &str = "EMERGENCY";
pub const LOG_LEVEL_ALERT: &str = "ALERT";
pub const LOG_LEVEL_CRITICAL: &str = "CRITICAL";
pub const LOG_LEVEL_ERROR: &str = "ERROR";
pub const LOG_LEVEL_WARN: &str = "WARN";
pub const LOG_LEVEL_NOTICE: &str = "NOTICE";
pub const LOG_LEVEL_INFO: &str = "INFO";
pub const LOG_LEVEL_DEBUG: &str = "DEBUG";

// systemd severity codes
pub const LOG_LEVEL_CODE_EMERGENCY: &str = "0";
pub const LOG_LEVEL_CODE_ALERT: &str = "1";
pub const LOG_LEVEL_CODE_CRITICAL: &str = "2";
pub const LOG_LEVEL_CODE_ERROR: &str = "3";
pub const LOG_LEVEL_CODE_WARN: &str = "4";
pub const LOG_LEVEL_CODE_NOTICE: &str = "5";
pub const LOG_LEVEL_CODE_INFO: &str = "6";
pub const LOG_LEVEL_CODE_DEBUG: &str = "7";