I add the customLevels with query:35
in the code but nit able to print as QUERY in the terminal.It is printing as below.Could any one suggest on how we can print as QUERY instead of USERLVL.
2021-10-28 09:25:22.046 +0000] USERLVL(1888 on xxxx)
code:
const logger = pino({
customLevels: {
query: 35
},
prettyPrint: {
translateTime: true
}});
logger.query('hi');