diff --git a/igloo_base/src/lib.rs b/igloo_base/src/lib.rs index 3f2051e..cbe4fe3 100644 --- a/igloo_base/src/lib.rs +++ b/igloo_base/src/lib.rs @@ -28,6 +28,16 @@ pub enum IglooInstType Target = 9, } +#[derive(Debug)] +#[derive(PartialEq)] +pub enum IglooDebugSeverity +{ + CRITICAL = 0, + WARNING = 1, + INFO = 2, + TRACE = 3, +} + #[derive(Debug)] #[derive(PartialEq)] /// Igloo Error Type @@ -110,3 +120,9 @@ impl IglooEnvInfo } } } + +// trait IglooUtil +// { +// /// Better debugging + +// }