diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp
index eb70da1be600b283233c02179039f69d19f99287..46331aafb9cb5a89947440d311edea7a53acb70c 100644
--- a/indra/llcommon/llprocess.cpp
+++ b/indra/llcommon/llprocess.cpp
@@ -217,15 +217,13 @@ class WritePipeImpl: public LLProcess::WritePipe
 					remainptr += written;
 					remainlen -= written;
 
-#if SHOW_DEBUG
-					char msgbuf[512];
 					LL_DEBUGS("LLProcess") << "wrote " << written << " of " << towrite
-										   << " bytes to " << mDesc
-										   << " (original " << total << "),"
-										   << " code " << err << ": "
-										   << apr_strerror(err, msgbuf, sizeof(msgbuf))
-										   << LL_ENDL;
-#endif
+						<< " bytes to " << mDesc
+						<< " (original " << total << "),"
+						<< " code " << err << ": ";
+						char msgbuf[512];
+						LL_CONT << apr_strerror(err, msgbuf, sizeof(msgbuf))
+						<< LL_ENDL;
 
 					// The parent end of this pipe is nonblocking. If we weren't able
 					// to write everything we wanted, don't keep banging on it -- that