186
175
int log_file; ///< Handle for our log file
187
176
Status state; ///< The state the log is in
189
177
const std::string log_file_path; ///< Full path to the log file
190
178
std::string log_file_name; ///< Name of the log file
191
179
drizzled::atomic<off_t> log_offset; ///< Offset in log file where log will write next command
192
180
bool has_error; ///< Is the log in error?
193
181
std::string error_message; ///< Current error message
194
183
time_t last_sync_time; ///< Last time the log file was synced (only set in SYNC_METHOD_EVERY_SECOND)