stonelog/prefixes.go
Rene Nochebuena 14687cfc2f
All checks were successful
Go CI/CD / go-ci (push) Successful in 10m3s
Release v1.0.0 (#2)
Reviewed-on: #2
Reviewed-by: Cloud Administrator <cloud-admin@noreply.gitstormr.dev>
Co-authored-by: Rene Nochebuena <code-raider@noreply.gitstormr.dev>
Co-committed-by: Rene Nochebuena <code-raider@noreply.gitstormr.dev>
2025-04-10 18:30:35 -06:00

67 lines
1.7 KiB
Go

package stonelog
// stoneTracePrefixes contains prefixes for trace-level scientific messages.
// stoneDebugPrefixes contains prefixes for debug-level diagnostics and processes.
// stoneInfoPrefixes contains prefixes for informational scientific outcomes.
// stoneWarnPrefixes contains prefixes for warning-level messages of potential risks.
// stoneErrorPrefixes contains prefixes for error-level critical issues detected.
// stoneFatalPrefixes contains prefixes for fatal-level critical failures.
// stonePanicPrefixes contains prefixes for panic-level catastrophic failures.
var (
stoneTracePrefixes = []string{
"Science traces:",
"Lab sensors detect:",
"Microscope focus on:",
"Quantum scanner active:",
"Data particles observed:",
}
stoneDebugPrefixes = []string{
"Hypothesis forming:",
"Analyzing data patterns:",
"Debugging quantum fluctuations:",
"Lab notes:",
"Testing variables:",
}
stoneInfoPrefixes = []string{
"Experiment successful:",
"Lab results:",
"Scientific consensus:",
"Discovery logged:",
"Theory proven:",
}
stoneWarnPrefixes = []string{
"Anomaly detected:",
"Risk probability increased:",
"System instability suspected:",
"Contamination warning:",
"Resource depletion imminent:",
}
stoneErrorPrefixes = []string{
"Critical malfunction:",
"Lab accident reported:",
"Data corruption confirmed:",
"System collapse:",
"Hypothesis disproven:",
}
stoneFatalPrefixes = []string{
"SCIENTIFIC APOCALYPSE:",
"FINAL EXPERIMENT FAILED:",
"LABORATORY SHUTDOWN:",
"CORE CRITICAL:",
"RADIOACTIVE TERMINATION:",
}
stonePanicPrefixes = []string{
"CHAIN REACTION DETECTED:",
"SYSTEMIC COLLAPSE:",
"QUANTUM CATASTROPHE:",
"GALACTIC-LEVEL BUG DETECTED:",
"T-REX IN THE DATACENTER:",
}
)