diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-24 17:40:45 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-24 17:40:45 -0600 |
| commit | d48fe690c3c071cb5c8e3aa4d4672a32230a5e2d (patch) | |
| tree | 414f9e91877e901cb3de12be6f466cb4929f55ab /vendor/github.com/google/yamlfmt/internal | |
| parent | 7257c213887c6a80f727642b016606ec10340ed9 (diff) | |
refactor: extract job to process relationship updates in background
Diffstat (limited to 'vendor/github.com/google/yamlfmt/internal')
| -rw-r--r-- | vendor/github.com/google/yamlfmt/internal/logger/debug.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/github.com/google/yamlfmt/internal/logger/debug.go b/vendor/github.com/google/yamlfmt/internal/logger/debug.go index a75463c..5a82c3c 100644 --- a/vendor/github.com/google/yamlfmt/internal/logger/debug.go +++ b/vendor/github.com/google/yamlfmt/internal/logger/debug.go @@ -26,13 +26,15 @@ const ( DebugCodeAny DebugCode = iota DebugCodeConfig DebugCodePaths + DebugCodeDiffs ) var ( supportedDebugCodes = map[string][]DebugCode{ "config": {DebugCodeConfig}, "paths": {DebugCodePaths}, - "all": {DebugCodeConfig, DebugCodePaths}, + "diffs": {DebugCodeDiffs}, + "all": {DebugCodeConfig, DebugCodePaths, DebugCodeDiffs}, } activeDebugCodes = collections.Set[DebugCode]{} ) |
