Added a store to simple-log.

This commit is contained in:
2026-08-03 10:17:17 +02:00
parent 07cf44a098
commit 5869df9f59
3 changed files with 220 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
#lang racket
(provide log-hash)
(define log-hash (hash 'debug 0 'dbg 0
'info 1
'warning 2 'warn 2
'err 3 'error 3
'fatal 5))