Add a new warning type (more "strong" but still a warning)

This commit is contained in:
Godzil
2018-08-05 09:28:28 +01:00
parent 4193643306
commit f1a5d1b6a8

View File

@@ -26,6 +26,12 @@ export function warn(str: string)
console.log(' \x1B[1;33m* WARN \x1B[0m: ' + str);
}
export function warnMore(str: string)
{
/* Do fancy output */
console.log(' \x1B[1;38;5;166m* WARN \x1B[0m: ' + str);
}
export function dispEpisode(name: string, status: string, addNL: boolean)
{
/* Do fancy output */