1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// UniversalUI_Base - debug.rs
// created by sebhall on 28/07/2023
//
// UniversalUI_Base contains definitions for types
// common to other modules of the UniversalUI framework.
//
// debug.rs contains functions for printing color-coded
// messages to the console. These are listed according
// to severity and allow for a clean printing interface.
use Colorize;
// information only, no issues.
// warning, no significant issues to functionality but
// non ideal implementation.
// error, wrong implementation and functionality affected.
// Typically used when using a function incorrectly.
// critical error, app about to crash