Skip to main content

Get log

Retrieves connection log data (when in-memory logging is enabled)

Function GetLog(Val Connection, Val AsString = False, Val EventCount = 100) Export

ParameterCLI optionTypeRequiredDescription
Connection-ArbitraryAddIn object with open connection
AsString-BooleanTrue > returns log as a single string, False > as an array
EventCount-NumberNumber of recent events to retrieve. 0 > no limits
Returns

String, Map Of KeyAndValue - Log as a string or a map with the full execution result

Caution

NOCLI: this method is not available in CLI version

1C:Enterprise/OneScript code example
LogFile = GetTempFileName("txt");
LoggingSettings = OPI_FTP.GetLoggingSettings(True, 100, LogFile);

Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";

UseProxy = True;
FTPS = True;

ProxySettings = Undefined;
TLSSettings = Undefined;

FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);

If UseProxy Then

ProxyType = "http";

ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";

ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);

EndIf;

If FTPS Then
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;

Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings, LoggingSettings);

If Not OPI_FTP.IsConnector(Connection) Then
Raise OPI_Tools.JSONString(Connection);
EndIf;

Result = OPI_FTP.Ping(Connection);

Result = OPI_FTP.GetLog(Connection);
Result
{
"logs": [
"[2026-05-26 13:41:52.076] Connecting to FTP...",
"[2026-05-26 13:41:52.102] Connected to FTP"
],
"result": true,
"returned": 2,
"total": 2
}