From a370e0f4677de98be3d9f9b3200351762413f790 Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Mon, 2 Feb 2026 15:21:59 +0100 Subject: [PATCH] fix(config): unify logsDir default to ocaplogs - Example config and CLAUDE.md were using ./OCAPLOG - Code default in config.go was ./ocaplogs - Standardized everything to ./ocaplogs --- CLAUDE.md | 2 +- ocap_recorder.cfg.json.example | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 37bb1c5..314845c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -84,7 +84,7 @@ File: `ocap_recorder.cfg.json` (placed alongside DLL) ```json { "logLevel": "info", - "logsDir": "./OCAPLOG", + "logsDir": "./ocaplogs", "defaultTag": "TvT", "api": { "serverUrl": "http://127.0.0.1:5000", diff --git a/ocap_recorder.cfg.json.example b/ocap_recorder.cfg.json.example index eac612e..0e6c2cb 100644 --- a/ocap_recorder.cfg.json.example +++ b/ocap_recorder.cfg.json.example @@ -1,6 +1,6 @@ { "logLevel": "info", - "logsDir": "./OCAPLOG", + "logsDir": "./ocaplogs", "defaultTag": "TvT", "api": { "serverUrl": "http://127.0.0.1:5000",