Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
29 lines
375 B
Plaintext
29 lines
375 B
Plaintext
/**
|
|
* Represents default log level values
|
|
*
|
|
* @enum {number}
|
|
*/
|
|
const DEFAULT_LEVELS = {
|
|
trace: 10,
|
|
debug: 20,
|
|
info: 30,
|
|
warn: 40,
|
|
error: 50,
|
|
fatal: 60
|
|
}
|
|
|
|
/**
|
|
* Represents sort order direction: `ascending` or `descending`
|
|
*
|
|
* @enum {string}
|
|
*/
|
|
const SORTING_ORDER = {
|
|
ASC: 'ASC',
|
|
DESC: 'DESC'
|
|
}
|
|
|
|
module.exports = {
|
|
DEFAULT_LEVELS,
|
|
SORTING_ORDER
|
|
}
|