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
2014-03-06 15:11:01 -06:00

12 lines
194 B
TypeScript

module TyperLog {
export enum TyperLogLevel {
EMERGENCY,
ALERT,
CRITICAL,
ERROR,
WARNING,
NOTICE,
INFORMATIONAL,
DEBUG
}
}