This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
TyperLog/lib/TyperLog/TyperLogLevel.ts

12 lines
194 B
TypeScript
Raw Normal View History

2014-03-06 21:11:01 +00:00
module TyperLog {
export enum TyperLogLevel {
EMERGENCY,
ALERT,
CRITICAL,
ERROR,
WARNING,
NOTICE,
INFORMATIONAL,
DEBUG
}
}