I'm pretty late on this, but if you edit the
help.jsp file (located in Subsonic's /WEB-INF/jsp/ folder) with a text editor, you can insert the following
bold lines only to it so that the About page won't display Log information to anyone who isn't signed in as an administrator:
<c:if test="${model.user.adminRole}">
<h2 style="padding-top:1em"><i class="fa fa-list fa-lg icon"></i> <fmt:message key="help.log"/></h2>
<table cellpadding="2" class="log indent">
<c:forEach items="${model.logEntries}" var="entry">
<tr>
<td>[<fmt:formatDate value="${entry.date}" dateStyle="short" timeStyle="long" type="both"/>]</td>
<td>${entry.level}</td><td>${entry.category}</td><td>${fn:escapeXml(entry.message)}</td>
</tr>
</c:forEach>
</table>
<p><fmt:message key="help.logfile"><fmt:param value="${model.logFile}"/></fmt:message> </p></c:if>Cheers, and Happy Halloween!
