Learn R Programming

phreeqc (version 3.8.7)

phrSetLogFileOn: Set log file on/off.

Description

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.

Usage

phrSetLogFileOn(value)

Arguments

value

if TRUE, writes output to the the log file.

Details

Logging must be enabled through the use of the KNOBS -logfile option in order to receive an log messages.

References

https://water.usgs.gov/water-resources/software/PHREEQC/IPhreeqc.pdf

See Also

Other Log: phrGetLogFileName(), phrGetLogFileOn(), phrGetLogStrings(), phrGetLogStringsOn(), phrSetLogFileName(), phrSetLogStringsOn()

Examples

Run this code

# This example runs ex2 with the log file turned on.
phrLoadDatabaseString(phreeqc.dat)
phrSetLogFileOn(TRUE)
phrSetLogFileName(file.path(tempdir(), "ex2.log"))

# turn logging on
phrAccumulateLine("KNOBS; -logfile true")
phrRunAccumulated()

if (is.null(phrRunString(ex2))) {
  cat(paste("see ", phrGetLogFileName(), ".\n", sep = ""))
}

Run the code above in your browser using DataLab