Summary:
The logging code used to support a LogLevel::ERROR value on non-Windows
platforms. I removed it in
D5288600 to make all platforms consistent, but I
forgot to remove this comment describing it.
Reviewed By: bolinfest
Differential Revision:
D6341244
fbshipit-source-id:
054427d342066f354c859b12611b907dc2d4fa35
WARN = 3000,
WARNING = 3000,
- // Unfortunately Windows headers #define ERROR
- // On Windows platforms we avoid defining ERROR. However we make it
- // available on other platforms, to make it easier to convert code from
- // other log libraries that also use ERROR as their log level name (e.g.,
- // glog).
+ // Unfortunately Windows headers #define ERROR, so we cannot use
+ // it as an enum value name. We only provide ERR instead.
ERR = 4000,
CRITICAL = 5000,