commit 85f85feb8fbb2c58bf6dc5273866d6206af6b6cc parent 33f4e51c4cc69c470e8a6e09c9a4fd5440c943f7 Author: lash <dev@holbrook.no> Date: Wed, 19 Apr 2023 07:46:54 +0100 Add warn loglevel, add piknik tracker Diffstat:
11 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/.piknik/.msg/.master b/.piknik/.msg/.master diff --git a/.piknik/.tags/UNTAGGED/120e7d33-dfbf-4608-a6f1-c9c65fa35883 b/.piknik/.tags/UNTAGGED/120e7d33-dfbf-4608-a6f1-c9c65fa35883 diff --git a/.piknik/.tags/UNTAGGED/3c7af547-9a33-41c6-9c0d-6c024ab95282 b/.piknik/.tags/UNTAGGED/3c7af547-9a33-41c6-9c0d-6c024ab95282 diff --git a/.piknik/.tags/UNTAGGED/ef95152e-f046-4c29-aae8-c246d4ce64a4 b/.piknik/.tags/UNTAGGED/ef95152e-f046-4c29-aae8-c246d4ce64a4 diff --git a/.piknik/BACKLOG/120e7d33-dfbf-4608-a6f1-c9c65fa35883 b/.piknik/BACKLOG/120e7d33-dfbf-4608-a6f1-c9c65fa35883 @@ -0,0 +1 @@ +{"id": "120e7d33-dfbf-4608-a6f1-c9c65fa35883", "title": "Display asm line part breaks when first character is capitalized", "assigned": {}, "dependencies": [], "owner": null} +\ No newline at end of file diff --git a/.piknik/BACKLOG/3c7af547-9a33-41c6-9c0d-6c024ab95282 b/.piknik/BACKLOG/3c7af547-9a33-41c6-9c0d-6c024ab95282 @@ -0,0 +1 @@ +{"id": "3c7af547-9a33-41c6-9c0d-6c024ab95282", "title": "move context to first arg in methods", "assigned": {}, "dependencies": [], "owner": null} +\ No newline at end of file diff --git a/.piknik/BACKLOG/ef95152e-f046-4c29-aae8-c246d4ce64a4 b/.piknik/BACKLOG/ef95152e-f046-4c29-aae8-c246d4ce64a4 @@ -0,0 +1 @@ +{"id": "ef95152e-f046-4c29-aae8-c246d4ce64a4", "title": "Reverse CATCH mode bit, 0 = test unset", "assigned": {}, "dependencies": [], "owner": null} +\ No newline at end of file diff --git a/logging/default.go b/logging/default.go @@ -1,7 +1,7 @@ -// +build logwarn +// +build !logwarn,!logdebug,!loginfo,!logtrace,!logerror package logging var ( - LogLevel = LVL_WARN + LogLevel = LVL_NONE ) diff --git a/logging/info.go b/logging/info.go @@ -3,5 +3,5 @@ package logging var ( - LogLevel = LVL_DEBUG + LogLevel = LVL_INFO ) diff --git a/logging/none.go b/logging/none.go @@ -1,7 +0,0 @@ -// +build !logdebug,!loginfo,!logtrace,!logerror,!logwarn - -package logging - -var ( - LogLevel = LVL_NONE -) diff --git a/logging/default.go b/logging/warn.go