Internal change

PiperOrigin-RevId: 365026440
This commit is contained in:
hai007
2021-03-25 06:53:06 -07:00
committed by Copybara-Service
parent aa26e3d88d
commit abaac41f1b
3 changed files with 12 additions and 1 deletions
+4
View File
@@ -23,9 +23,13 @@ namespace api {
// A log message that prints to appropraite destination when ~LogMessage() is
// called.
//
// note: the Severity enum should map (best effort) to the corresponding level
// id that the platform logging implementation has.
class LogMessage {
public:
enum class Severity {
kVerbose = -1,
kInfo = 0,
kWarning = 1,
kError = 2,