Features

User Interface

Programming Interface

Remote Logging Examples

ViewonLog provides remote logging interface.

Format
      SetVLogServerAddress(ipAddress, portNumber)
Parameters
       ipAddress : the name of the server which you intend to connect with.
          ex)“127.0.0.1” or “ComputerName” or “www.ViewonCode.com”
       portNumber : the port number of the server which you intend to connect with.

C#
VLogCommon.SetVLogServerAddress ("192.168.10.10",", 5101));

VLog.LogTrace("TRACE message");
VLog.LogDebug(""DEBUG message"));

Visual Basic
VLogCommon.SetVLogServerAddress("192.168.10.10",", 5101));

VLog.LogTrace("TRACE message");
VLog.LogDebug(""DEBUG message"));

C++
ViewonLog::SetVLogServerAddressA("192.168.10.10",", 5101));

VLOG_TRACE("TRACE message");
VLOG_DEBUG("DEBUG message"));