Update pattern_formatter-inl.h

Comment describing the default logging pattern is missing [%s:%#], which is the abbreviated source file + the line number.

I tried to customize our own logger by copy pasting this info, and then I noticed we had lost that information.
This commit is contained in:
Benjamin Sergeant 2021-04-08 09:05:55 -07:00 committed by GitHub
parent efbff95ec7
commit aa264a7fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -925,7 +925,7 @@ private:
}; };
// Full info formatter // Full info formatter
// pattern: [%Y-%m-%d %H:%M:%S.%e] [%n] [%l] %v // pattern: [%Y-%m-%d %H:%M:%S.%e] [%n] [%l] [%s:%#] %v
class full_formatter final : public flag_formatter class full_formatter final : public flag_formatter
{ {
public: public: