Index: trunk/grails-app/conf/BootStrap.groovy
===================================================================
--- trunk/grails-app/conf/BootStrap.groovy	(revision 228)
+++ trunk/grails-app/conf/BootStrap.groovy	(revision 230)
@@ -7,4 +7,5 @@
     def init = { servletContext ->
 
+        log.info "Application starting."
         log.debug "GrailsUtil.environment = ${GrailsUtil.environment}"
 
Index: trunk/grails-app/i18n/messages.properties
===================================================================
--- trunk/grails-app/i18n/messages.properties	(revision 228)
+++ trunk/grails-app/i18n/messages.properties	(revision 230)
@@ -21,4 +21,12 @@
 entry.duration=Duration
 entry.duration.help=The time (hh:mm) booked against this entry for date done.
+entry.date.done=Date Done
+entry.date.done.help=The date on which the event actually occurred.
+entry.comment.fault=Fault
+entry.comment.fault.help=Describe the fault from an operation perspective, NOT a technical perspective.
+entry.comment.work.done=Work Done
+entry.comment.work.done.help=Describe the work that was done. \
+Include the root cause if known or professional opinion on any faults. \
+Include condition and contributing factors.
 
 assignedPerson.estimatedDuration=Estimated Duration
Index: trunk/grails-app/views/entryDetailed/create.gsp
===================================================================
--- trunk/grails-app/views/entryDetailed/create.gsp	(revision 228)
+++ trunk/grails-app/views/entryDetailed/create.gsp	(revision 230)
@@ -42,10 +42,16 @@
                             <tr class="prop">
                                 <td valign="top" class="name">
-                                    <label for="comment">${entryInstance?.entryType}:</label>
+                                    <label for="comment">${entryInstance?.entryType.encodeAsHTML()}:</label>
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'comment','errors')}">
                                     <textarea rows="5" cols="40" name="comment">${fieldValue(bean:entryInstance, field:'comment')}</textarea>
+                                    <g:if test="${entryInstance?.entryType?.id == 1}">
+                                        <g:helpBalloon code="entry.comment.fault" />
+                                    </g:if>
+                                    <g:elseif test="${entryInstance?.entryType?.id == 2}">
+                                        <g:helpBalloon code="entry.comment.work.done" />
+                                    </g:elseif>
                                 </td>
-                            </tr> 
+                            </tr>
                         
                             <tr class="prop">
@@ -55,6 +61,7 @@
                                 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}">
                                     <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${new Date()}" />
+                                    <g:helpBalloon code="entry.date.done" />
                                 </td>
-                            </tr> 
+                            </tr>
                         
                             <tr class="prop">
