/* * logger.h * * Created on: Dec 10, 2010 * Author: Miha Vitorovic */ #ifndef LOGGER_H_ #define LOGGER_H_ #include namespace epics { namespace pvAccess { /** * Create a logger that will write to file indicated by the fname. * After creation you are free to use standard EPICSv3 functions from * errlog.h. * * @param[in] fname The file to write to. If the file exists, it * is opened for append. */ void createFileLogger( epics::pvData::String fname ); } } #endif /* LOGGER_H_ */