This is an automated email from the ASF dual-hosted git repository.

mbien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 0472114e4 Fix a typo
     new 86ceafb20 Merge pull request #683 from ramiswailem/patch-1
0472114e4 is described below

commit 0472114e442cbddc4e522c9aa4491bd96f04803a
Author: Rami Swailem <pal...@gmx.de>
AuthorDate: Mon Oct 2 16:07:10 2023 +0200

    Fix a typo
---
 netbeans.apache.org/src/content/wiki/DevFaqAddTimestampToLogs.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/netbeans.apache.org/src/content/wiki/DevFaqAddTimestampToLogs.adoc 
b/netbeans.apache.org/src/content/wiki/DevFaqAddTimestampToLogs.adoc
index 4271c8ad8..c36c8ef6c 100644
--- a/netbeans.apache.org/src/content/wiki/DevFaqAddTimestampToLogs.adoc
+++ b/netbeans.apache.org/src/content/wiki/DevFaqAddTimestampToLogs.adoc
@@ -86,7 +86,7 @@ public class LogFormatter extends Formatter {
         // Prepend a timestamp
         Instant instant = Instant.ofEpochMilli(record.getMillis());
         ZonedDateTime timestamp = ZonedDateTime.ofInstant(instant, 
ZoneId.systemDefault());
-        sb.append(timestamp.toLocalTime.toString());
+        sb.append(timestamp.toLocalTime().toString());
         sb.append(' ');
         sb.append(logMsg);
         
@@ -163,4 +163,4 @@ on 2014-06-21T13:31:08Z.
 
 
 *NOTE:* This document was automatically converted to the AsciiDoc format on 
2018-02-07, and needs to be reviewed.
-////
\ No newline at end of file
+////


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to