forked from berachain/polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.go
85 lines (75 loc) · 2.66 KB
/
logger.go
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// SPDX-License-Identifier: MIT
//
// Copyright (c) 2023 Berachain Foundation
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
package main
import (
"fmt"
)
// Color constants for terminal output.
const (
resetColor = "\033[0m"
redColor = "\033[31m"
greenColor = "\033[32m"
yellowColor = "\033[33m"
blueColor = "\033[34m"
magentaColor = "\033[35m"
cyanColor = "\033[36m"
)
// LogRed prints a log message with red color.
func LogRed(msg string, args ...interface{}) {
log(redColor, msg, args...)
}
// LogGreen prints a log message with green color.
func LogGreen(msg string, args ...interface{}) {
log(greenColor, msg, args...)
}
// LogYellow prints a log message with yellow color.
func LogYellow(msg string, args ...interface{}) {
log(yellowColor, msg, args...)
}
// LogBlue prints a log message with blue color.
func LogBlue(msg string, args ...interface{}) {
log(blueColor, msg, args...)
}
// LogMagenta prints a log message with magenta color.
func LogMagenta(msg string, args ...interface{}) {
log(magentaColor, msg, args...)
}
// LogCyan prints a log message with cyan color.
func LogCyan(msg string, args ...interface{}) {
log(cyanColor, msg, args...)
}
// log is a helper function that prints a log message and key-value pairs
// with a specified color.
// colorCode: ANSI escape code for the desired color
// msg: The log message to be printed
// args: Key-value pairs to be printed
func log(colorCode string, msg string, args ...interface{}) {
fmt.Printf("%s%s%s\n", colorCode, msg, resetColor)
for i := 0; i < len(args); i += 2 {
key := args[i]
value := args[i+1]
fmt.Printf("%s %v: %v%s\n", colorCode, key, value, resetColor)
}
}