diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2012-01-22 11:56:38 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2012-01-22 11:56:38 -0500 |
commit | 748d1b311fdecf123df40bd7d22dd7e19afaca84 (patch) | |
tree | f4d52790a8788ba4f6f3a7973acaa231893526ac /indra/newview | |
parent | aa1bbe3277842a9a6e7db5227b35f1fbea50b7a6 (diff) |
Add LLProcess logging on launch(), kill(), isRunning().
Much as I dislike viewer log spam, seems to me starting a child process,
killing it and observing its termination are noteworthy events.
New logging makes LLExternalEditor launch message redundant; removed.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llexternaleditor.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/llexternaleditor.cpp b/indra/newview/llexternaleditor.cpp index 0d3ed0ba35..561b87618c 100644 --- a/indra/newview/llexternaleditor.cpp +++ b/indra/newview/llexternaleditor.cpp @@ -102,9 +102,7 @@ LLExternalEditor::EErrorCode LLExternalEditor::run(const std::string& file_path) params.args.add(fixed); } - // Run the editor. - llinfos << "Running editor command [" << params << "]" << llendl; - // Prevent killing the process in destructor. + // Run the editor. Prevent killing the process in destructor. params.autokill = false; return LLProcess::create(params) ? EC_SUCCESS : EC_FAILED_TO_RUN; } |