Fixed comments of slowlog duration

This commit is contained in:
xuchengxuan 2017-06-14 16:42:21 +08:00
parent d3b32ca48d
commit 3fc4bf07cc

View File

@ -35,7 +35,7 @@ typedef struct slowlogEntry {
robj **argv;
int argc;
long long id; /* Unique entry identifier. */
long long duration; /* Time spent by the query, in nanoseconds. */
long long duration; /* Time spent by the query, in microseconds. */
time_t time; /* Unix time at which the query was executed. */
} slowlogEntry;