dateandtimecalculationscripts

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
dateandtimecalculationscripts [2021/07/25 16:04]
wikiadmin created
dateandtimecalculationscripts [2021/07/25 16:14] (current)
wikiadmin [Get the Current Local Time]
Line 24: Line 24:
 ==== Get the Current Local Time ==== ==== Get the Current Local Time ====
  
-For log4j logging, use a date formatter in the appender, for example: +For log4j logging, use a date formatter %d in the appender layout, for example:
  
 +<code xml>
 +     <layout class="org.apache.log4j.PatternLayout">
 +   <param name="ConversionPattern"  value="%d{ISO8601} %m %n" />
 +     </layout>
 +</code>
  
  
 In a script the current time can be printed using: In a script the current time can be printed using:
  
-    df=java.time.format.DateTimeFormatter.ofPattern("HH:mm:ss");  +<code JavaScript> 
-    timenow =  java.time.LocalDateTime.now(); + //simple formatter for the time 
-    print(df.format(timenow)+" S10F1 TerminalRequest_Flag"); //#debugging+ df=java.time.format.DateTimeFormatter.ofPattern("HH:mm:ss");  
 + timenow =  java.time.LocalDateTime.now(); 
 + print(df.format(timenow)+" Time of Event"); 
 +</code>
  • dateandtimecalculationscripts.1627247093.txt.gz
  • Last modified: 2021/07/25 16:04
  • by wikiadmin