Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Insert excerpt
BrightScript Version Navigation Menu
BrightScript Version Navigation Menu
nopaneltrue
This object enables recording of the system log on a BrightSign player.  Note that BrightScript print values are not written to the system log; use the ifStreamSend methods to write to the log.

Object Creation: This object is created with no parameters:

...

Writes the specified characters to the stream. This method can support either a string or an roByteArray. If the block is a string, any null bytes will terminate the block.

Flush()

Writing to a Remote Syslog Server

BrightSign players can write to a remote syslog server using the standard syslog protocol. To configure remote logging, write the "syslog" entry to the "networking" section of the player registry:

Code Block
registry = CreateObject("roRegistrySection", "networking")
registry.Write("syslog", "my-syslog-server")
registry.Flush()

You can specify the syslog using either its IP address or hostname.