.error() on a trace event must be before the details
This commit is contained in:
parent
da9c42fd9e
commit
98b4299fb2
|
@ -1877,7 +1877,7 @@ ACTOR Future<Void> localChangeFeedStream(StorageServer* data,
|
|||
}
|
||||
}
|
||||
} catch (Error& e) {
|
||||
TraceEvent(SevError, "LocalChangeFeedError", data->thisServerID).detail("CFID", rangeID.printable()).error(e);
|
||||
TraceEvent(SevError, "LocalChangeFeedError", data->thisServerID).error(e).detail("CFID", rangeID.printable());
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue