N&N for https://github.com/eclipse-platform/eclipse.platform.runtime/issues/33 (#11)

diff --git a/4.24/platform_isv.html b/4.24/platform_isv.html
index 63f0efe..45bddeb 100644
--- a/4.24/platform_isv.html
+++ b/4.24/platform_isv.html
@@ -38,6 +38,23 @@
   <tr>
     <td id="Platform" class="section" colspan="2"><h2>Platform Changes</h2></td>
   </tr>
+  <tr id="ilog-service"> <!-- https://github.com/eclipse-platform/eclipse.platform.runtime/issues/33 -->
+	<td class="title"><a href="#ilog-service">ILog can now be acquired as a service</a></td>
+	<td class="content">
+		The ILog can now be acquired as service, so no need to have a <code>Plugin</code> activator or calling <code>Platform.getLog(...)</code> anymore if you are in a Dependency Injection Context:
+		<p>
+		<b>Example with E4:</b>
+		</p>
+		<pre>@Inject ILog log;</pre>
+		<p>
+		<b>Example with Declarative Services:</b><br/>
+      	</p>
+		<pre>@Reference ILog log;</pre>
+      	<p>
+      	Of course any other way to acquire a Service (<code>ServiceTracker</code>, <code>ServiceCaller</code>, ...) will also work.
+      	</p>
+	</td>
+  </tr>
   <!-- ******************** End of Platform ********************** -->
 
   <!-- *********************** SWT *********************** -->