This commit is contained in:
Valentino Orlandi 2024-02-12 20:50:15 +01:00
parent 080cb20552
commit 1829b26355
Signed by: elB4RTO
GPG Key ID: 1719E976DB2D4E71
2 changed files with 2 additions and 1 deletions

View File

@ -541,7 +541,7 @@ FieldData& LogLineData::data(const LogsFormatField id)
return this->query;
case F::response_code:
return this->response_code;
case F::time_taken_s:
case F::time_taken_ms:
return this->time_taken;
case F::bytes_sent:
return this->bytes_sent;

View File

@ -77,6 +77,7 @@ inline size_t operator +(const size_t lhs, const FieldData& rhs) noexcept
*/
struct LogLineData final
{
//! \throw LogParserException
LogLineData(const std::string& line, const LogsFormat& logs_format);
~LogLineData() noexcept = default;
LogLineData(LogLineData&& other) noexcept = default;