phrSetLogFileOn {phreeqc} | R Documentation |
Sets the log file switch on or off. This switch controls whether or not phreeqc writes log messages to the log file. The initial setting is off.
phrSetLogFileOn(value)
value |
if TRUE, writes output to the the log file. |
Logging must be enabled through the use of the KNOBS -logfile option in order to receive an log messages.
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
Other Log: phrGetLogFileName
,
phrGetLogFileOn
,
phrGetLogStringsOn
,
phrGetLogStrings
,
phrSetLogFileName
,
phrSetLogStringsOn
# This example runs ex2 with the log file turned on. phrLoadDatabaseString(phreeqc.dat) phrSetLogStringsOn(TRUE) # turn logging on phrAccumulateLine("KNOBS; -logfile true") phrRunAccumulated() if (is.null(phrRunString(ex2))) { cat("see", phrGetLogFileName(), "\n") }