11 lines
192 B
Go
11 lines
192 B
Go
package errs
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Error codes related to logging
|
|
var (
|
|
ErrLoggingError = NewSystemError(SystemSubcategoryLogging, 0, http.StatusInternalServerError, "logging error")
|
|
)
|