Skip to content

_examples/SysLogExample.tl

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
mission SysLogExample {
  arguments {
    newTime = 5 minute

    SkipComms = false
  }

  syslog important "newTime = " + newTime~hour + " SkipComms = " + SkipComms~bool

  syslog "hello world"

  syslog SkipComms~bool
}