Version upgrade 4.00 #45

Merged
elB4RTO merged 113 commits from devel into main 2024-02-17 16:13:26 +01:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 1829b26355 - Show all commits

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;