fsmonitor: log FSMN token when reading and writing the index
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Reviewed-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
940b94f35c
commit
29fbbf43a0
12
fsmonitor.c
12
fsmonitor.c
@ -87,7 +87,11 @@ int read_fsmonitor_extension(struct index_state *istate, const void *data,
|
|||||||
BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
|
BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
|
||||||
(uintmax_t)istate->fsmonitor_dirty->bit_size, istate->cache_nr);
|
(uintmax_t)istate->fsmonitor_dirty->bit_size, istate->cache_nr);
|
||||||
|
|
||||||
trace_printf_key(&trace_fsmonitor, "read fsmonitor extension successful");
|
trace2_data_string("index", NULL, "extension/fsmn/read/token",
|
||||||
|
istate->fsmonitor_last_update);
|
||||||
|
trace_printf_key(&trace_fsmonitor,
|
||||||
|
"read fsmonitor extension successful '%s'",
|
||||||
|
istate->fsmonitor_last_update);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,7 +137,11 @@ void write_fsmonitor_extension(struct strbuf *sb, struct index_state *istate)
|
|||||||
put_be32(&ewah_size, sb->len - ewah_start);
|
put_be32(&ewah_size, sb->len - ewah_start);
|
||||||
memcpy(sb->buf + fixup, &ewah_size, sizeof(uint32_t));
|
memcpy(sb->buf + fixup, &ewah_size, sizeof(uint32_t));
|
||||||
|
|
||||||
trace_printf_key(&trace_fsmonitor, "write fsmonitor extension successful");
|
trace2_data_string("index", NULL, "extension/fsmn/write/token",
|
||||||
|
istate->fsmonitor_last_update);
|
||||||
|
trace_printf_key(&trace_fsmonitor,
|
||||||
|
"write fsmonitor extension successful '%s'",
|
||||||
|
istate->fsmonitor_last_update);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user