phrGetLogFileName {phreeqc} | R Documentation |
Retrieves the name of the log file. The default name is phreeqc.0.log.
phrGetLogFileName()
The name of the log file as a string.
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
Other Log: phrGetLogFileOn
,
phrGetLogStringsOn
,
phrGetLogStrings
,
phrSetLogFileName
,
phrSetLogFileOn
,
phrSetLogStringsOn
# This example checks to see if the log file is turned on # and prints the appropriate message if (phrGetLogFileOn()) { cat("The name of the log file (is/will be):", phrGetLogFileName(), "\n") } else { cat("The log file is not turned on\n") }