From 730cece33a2dba05aea75bc23c7775400bf355d9 Mon Sep 17 00:00:00 2001 From: Nate Koenig Date: Mon, 11 Nov 2024 11:11:04 -0800 Subject: [PATCH] Reduce line length Signed-off-by: Nate Koenig --- src/SimulationRunner.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/SimulationRunner.cc b/src/SimulationRunner.cc index 77764fffde..dc2d5b0a77 100644 --- a/src/SimulationRunner.cc +++ b/src/SimulationRunner.cc @@ -1132,8 +1132,9 @@ void SimulationRunner::SetPaused(const bool _paused) // downloaded in the background. We must remain paused while downloading. if (!_paused && this->forcedPause) { - gzmsg << "Received an unpause request while simulation assets are downloading. " - << "Simulation will start running once all the assets are downloaded.\n"; + gzmsg << "Received an unpause request while simulation assets are " + << "downloading. Simulation will start running once all the " + << "assets are downloaded.\n"; this->requestedPause = _paused; return; }