C# SMS API - log method
This method can be used to write a log entry on the server into the logfile belonging to the logged in user. For example if you login as admin, the following logfile will hold the logentry:
C:\Program Files\Ozeki\OzekiNG - SMS Gateway\Logs\USER_Standarad_admin.txt
Name | Description | |
![]() |
void log(string logmessage); |
Use this function to write a log entry.
Parameters logmessage - The text of the log entry. The server will automatically mark this entry with a timestamp. Returns This function does not return anything. Example log("Welcome to my C# SMS application"); |