From b12a81146d2b4f797222f312cb7624572648df70 Mon Sep 17 00:00:00 2001 From: Lukas Holst Date: Wed, 21 Aug 2024 17:43:53 -0400 Subject: [PATCH] separate dtnd log and err files --- Modules/DTN/simulation/core_services/dtnd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/DTN/simulation/core_services/dtnd.py b/Modules/DTN/simulation/core_services/dtnd.py index 7999fd524..7224836b4 100644 --- a/Modules/DTN/simulation/core_services/dtnd.py +++ b/Modules/DTN/simulation/core_services/dtnd.py @@ -42,7 +42,7 @@ class DtndService(CoreService): dirs: Tuple[str, ...] = () configs: Tuple[str, ...] = ('dtnd.toml', 'start-dtnd.sh') startup: Tuple[str, ...] = ( - "bash -c 'dtnd -c dtnd.toml &> dtnd.log'", ) + "bash -c 'dtnd -c dtnd.toml 1> dtnd.log 2> dtnd.err'", ) validate: Tuple[str, ...] = () validation_mode: ServiceMode = ServiceMode.NON_BLOCKING validation_timer: int = 5