File size: 152 Bytes
e762600
 
 
 
 
 
 
 
7fc7e09
e762600
1
2
3
4
5
6
7
8
9
10
11
package utils

import (
	"fmt"
)

func LogError(errorLogged error) {
	fmt.Println("There is an error!")
	fmt.Println("Error:", errorLogged)
}