test(logger): set Development=true to test if it affects debug logging

Changed Development from false to true to test if this is preventing
debug logs from being output. Development mode may affect how the
logger handles different log levels.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-06 03:41:50 -08:00
parent 47dd2d1cb5
commit 77fa40d27f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func Init(cfg *Config) error {
zapConfig := zap.Config{
Level: atomicLevel,
Development: false,
Development: true, // Changed to true to test if this affects debug logging
DisableCaller: false,
DisableStacktrace: false,
Sampling: nil,