home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / chrdmo.zip / CHRLOG.CHM < prev    next >
Text File  |  1994-01-17  |  297b  |  11 lines

  1. /**
  2. ***  This is a test filter for Chron that will log any event run to a file
  3. ***  called Chron.Log.  You will probably want to change the name of the
  4. ***  output file.
  5. **/
  6.  
  7. parse arg EventName, MessageText
  8.  
  9. '@echo' Date() time() '['EventName'/'MessageText'] >>  C:\Chron.Log'
  10. return 1
  11.