loolwsd.xml.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit ad7c8ea8b390749c93024fd5db68b1804d593fcc Author: Andras Timar <[email protected]> Date: Tue May 8 13:03:41 2018 +0200 trace should not be enabled by default in config file This setting defaults to false in code, when the setting is not present in the config file. Also world-readable /tmp is not a good default path of trace file. Change-Id: Iab6da18cf6f97f75bbcdaf444042cd7039c462f8 Reviewed-on: https://gerrit.libreoffice.org/53966 Reviewed-by: Michael Meeks <[email protected]> Tested-by: Michael Meeks <[email protected]> diff --git a/loolwsd.xml.in b/loolwsd.xml.in index e291cc290..33fd52c1b 100644 --- a/loolwsd.xml.in +++ b/loolwsd.xml.in @@ -52,8 +52,8 @@ <loleaflet_logging desc="Logging in the browser console" default="@LOLEAFLET_LOGGING@">@LOLEAFLET_LOGGING@</loleaflet_logging> - <trace desc="Dump commands and notifications for replay. When 'snapshot' is true, the source file is copied to the path first." enable="true"> - <path desc="Output path to hold trace file and docs. Use '%' for timestamp to avoid overwriting." compress="true" snapshot="false">/tmp/looltrace-%.gz</path> + <trace desc="Dump commands and notifications for replay. When 'snapshot' is true, the source file is copied to the path first." enable="false"> + <path desc="Output path to hold trace file and docs. Use '%' for timestamp to avoid overwriting. For example: /some/path/to/looltrace-%.gz" compress="true" snapshot="false"></path> <filter> <message desc="Regex pattern of messages to exclude"></message> </filter> _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
