aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/logwindow.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-07-15 14:49:09 +0200
committerhjk <hjk@qt.io>2016-07-19 06:00:35 +0000
commit14ccac60b9d6732b177b833d121d636cb5f0c510 (patch)
treeb37ff513c1b2320d16b7dd13591d2c6fd3f9c6d8 /src/plugins/debugger/logwindow.cpp
parentcdf1c924a3800dea8f6d3543bbc4f4162de7c0a2 (diff)
Debugger: Add a note to the debugger log about expected contents
Change-Id: I22402d07d23cb8bcfe24e80bb73a2aeaf33c5bed Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/debugger/logwindow.cpp')
-rw-r--r--src/plugins/debugger/logwindow.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/debugger/logwindow.cpp b/src/plugins/debugger/logwindow.cpp
index 9bbd5033ac..b421ee1cc5 100644
--- a/src/plugins/debugger/logwindow.cpp
+++ b/src/plugins/debugger/logwindow.cpp
@@ -428,6 +428,16 @@ LogWindow::LogWindow(QWidget *parent)
this, &LogWindow::doOutput);
setMinimumHeight(60);
+
+ showOutput(LogWarning,
+ tr("NOTE: This log contains possibly confidential information about your machine, "
+ "environment variables, in-memory data of the processes you are debugging, and more. "
+ "It is never transferred over the internet by Qt Creator, and only stored "
+ "to disk if you manually use the respective option from the context menu, or through "
+ "mechanisms that are not under Qt Creator's control, for instance in swap files.\n"
+ "You may be asked to share the contents of this log when reporting bugs related "
+ "to debugger operation. In this case, make sure your submission does not "
+ "contain data you do not want to or you are not allowed to share.\n\n"));
}
void LogWindow::executeLine()