.error() on a trace event must be before the details

This commit is contained in:
Evan Tschannen 2021-12-05 14:59:46 -08:00
parent da9c42fd9e
commit 98b4299fb2
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}