< prev index next >

src/share/vm/logging/logOutput.hpp

Print this page

        

*** 61,68 **** --- 61,76 ---- void set_config_string(const char* string); virtual const char* name() const = 0; virtual bool initialize(const char* options) = 0; virtual int write(const LogDecorations &decorations, const char* msg) = 0; + + virtual bool is_rotatable() { + return false; + } + + virtual void rotate(bool force) { + // Do nothing by default. + } }; #endif // SHARE_VM_LOGGING_LOGOUTPUT_HPP
< prev index next >