mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
15 lines
279 B
Go
15 lines
279 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright (c) 2024-2026 Quad4.io
|
|
|
|
package debug
|
|
|
|
// Debug log levels (higher = more verbose).
|
|
const (
|
|
DebugCritical = 1
|
|
DebugError = 2
|
|
DebugInfo = 3
|
|
DebugVerbose = 4
|
|
DebugTrace = 5
|
|
DebugPackets = 6
|
|
DebugAll = 7
|
|
)
|