-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.logging.example
More file actions
64 lines (48 loc) · 1.72 KB
/
.env.logging.example
File metadata and controls
64 lines (48 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# WeWrite Logging Configuration
# Copy this file to .env.local and uncomment the lines you want to enable
# =============================================================================
# LOGGING CONTROL - Set to 'true' to enable specific debug logging
# =============================================================================
# Authentication debugging (very verbose - logs every auth check)
# AUTH_DEBUG=true
# Subscription debugging (logs full subscription objects)
# SUBSCRIPTION_DEBUG=true
# Activity API debugging (logs activity requests and cache hits)
# ACTIVITY_DEBUG=true
# Page API debugging (logs page fetching and updates)
# PAGE_DEBUG=true
# General API debugging
# API_DEBUG=true
# Firebase operations debugging
# FIREBASE_DEBUG=true
# Cache operations debugging
# CACHE_DEBUG=true
# Performance monitoring
# PERFORMANCE_DEBUG=true
# =============================================================================
# LOG LEVEL CONTROL
# =============================================================================
# Overall log level: ERROR, WARN, INFO, DEBUG, TRACE
# LOG_LEVEL=INFO
# =============================================================================
# QUICK PRESETS
# =============================================================================
# Minimal logging (production-like)
# LOG_LEVEL=WARN
# Standard development logging
# LOG_LEVEL=INFO
# Verbose debugging (enable specific systems above)
# LOG_LEVEL=DEBUG
# AUTH_DEBUG=true
# SUBSCRIPTION_DEBUG=true
# ACTIVITY_DEBUG=true
# Full debugging (very verbose - use sparingly)
# LOG_LEVEL=TRACE
# AUTH_DEBUG=true
# SUBSCRIPTION_DEBUG=true
# ACTIVITY_DEBUG=true
# PAGE_DEBUG=true
# API_DEBUG=true
# FIREBASE_DEBUG=true
# CACHE_DEBUG=true
# PERFORMANCE_DEBUG=true