+2
-1
bsky.py
+2
-1
bsky.py
···
1806
1806
parser.add_argument('--cleanup-interval', type=int, default=10, help='Run user block cleanup every N cycles (default: 10, 0 to disable)')
1807
1807
parser.add_argument('--synthesis-interval', type=int, default=600, help='Send synthesis message every N seconds (default: 600 = 10 minutes, 0 to disable)')
1808
1808
parser.add_argument('--synthesis-only', action='store_true', help='Run in synthesis-only mode (only send synthesis messages, no notification processing)')
1809
+
parser.add_argument('--debug', action='store_true', help='Enable debug logging')
1809
1810
args = parser.parse_args()
1810
1811
1811
1812
# Initialize configuration with custom path
···
1882
1883
1883
1884
global logger, prompt_logger, console
1884
1885
logger = logging.getLogger("void_bot")
1885
-
logger.setLevel(logging.INFO)
1886
+
logger.setLevel(logging.DEBUG if args.debug else logging.INFO)
1886
1887
1887
1888
# Create a separate logger for prompts (set to WARNING to hide by default)
1888
1889
prompt_logger = logging.getLogger("void_bot.prompts")