docs

Home All functions Legacy functions Categories

vuLogGetFile()

Description

Gets the legacy sent-mail CSV log file path. (legacy name: vuGetMailLog()).

Previously exported as (legacy name, still supported):

Parameters

Return value

A LONG value indicating the result.

Notes

This is separate from diagnostics logging. Use vuDiagnosticsGetFile() to read the diagnostics log path.

This returns the log file path from the current session.

Example (Clarion)

ROUTINE:Test_vuLogGetFile   ROUTINE
  DATA
cLog   CSTRING(520)
RC     LONG

  CODE
  cLog = ''
  RC = vuLogGetFile(cLog)
  STOP('RC=' & RC & '  MailLog=' & cLog)
Home All functions Legacy functions Categories