summaryrefslogtreecommitdiff
path: root/include/leveldb/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/leveldb/options.h')
-rw-r--r--include/leveldb/options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/leveldb/options.h b/include/leveldb/options.h
index 0d4f6cd..381f228 100644
--- a/include/leveldb/options.h
+++ b/include/leveldb/options.h
@@ -12,8 +12,8 @@ namespace leveldb {
class Cache;
class Comparator;
class Env;
+class Logger;
class Snapshot;
-class WritableFile;
// DB contents are stored in a set of blocks, each of which holds a
// sequence of key,value pairs. Each block may be compressed before
@@ -61,10 +61,10 @@ struct Options {
Env* env;
// Any internal progress/error information generated by the db will
- // be to written to info_log if it is non-NULL, or to a file stored
+ // be written to info_log if it is non-NULL, or to a file stored
// in the same directory as the DB contents if info_log is NULL.
// Default: NULL
- WritableFile* info_log;
+ Logger* info_log;
// -------------------
// Parameters that affect performance