Changes between Version 3 and Version 4 of rcv_ew
- Timestamp:
- 03/18/12 17:10:23 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
rcv_ew
v3 v4 179 179 Function: output 180 180 181 Sets the on-off switch for writing an Earthworm log file to disk. If switch is 0, no log file will be written. If switch is 1, rcv_ew will write a daily log file(s) called rcv_ewxx.log_yymmdd where xx is rcv_ew's module id (set with " MyModuleId" command) and yymmdd is the current UTC date (ex: 960123) on the system clock. The file(s) will be written in the EW_LOG directory (environment variable).181 Sets the on-off switch for writing an Earthworm log file to disk. If switch is 0, no log file will be written. If switch is 1, rcv_ew will write a daily log file(s) called rcv_ewxx.log_yymmdd where xx is rcv_ew's module id (set with "!MyModuleId" command) and yymmdd is the current UTC date (ex: 960123) on the system clock. The file(s) will be written in the EW_LOG directory (environment variable). 182 182 183 183 NOTE: this log file contains information from only the Earthworm portion of rcv_ew. It is separate from the log files written by the USNSN code, RCV and STATION (see -o and -s command-line switches). … … 247 247 Below are three example command lines that you could include in the startstop configuration file to run rcv_ew as an Earthworm module. A sample Earthworm configuration file (rcv_ew.d) is shown below. 248 248 249 249 A. This command contains the minimum set of required command-line switches to start up rcv_ew. It will also yield the minimum disk-file output, with most messages being written to stdout: 250 250 {{{ 251 251 "rcv -tcp -# 8 -e rcv_ew.d" 252 252 }}} 253 253 254 254 B. This command gives rcv its own log file in the log directory: 255 255 {{{ 256 256 "rcv -tcp -o ../log/rcv.log -# 19 -e rcv_ew.d" 257 257 }}} 258 258 259 259 C. This command will yield huge log files, with debugging turned on for rcv and station (and possibly the Earthworm rcv_ew too): 260 260 {{{ 261 261 "rcv -tcp -o ../log/rcv.log -! -# 12 -s -dbg -e rcv_ew.d"