Is it possible to have date time stamp on the left? #58
Answered
by
JessieVela
JessieVela
asked this question in
Q&A
-
I love that it has the time stamp, but is it possible to make it show on the left and change the output format? I was trying to achieve this format
At first I did a custom reporter, but it feels like i'm rewriting the console at that point. |
Beta Was this translation helpful? Give feedback.
Answered by
JessieVela
Jan 30, 2025
Replies: 1 comment
-
It will be part of v4 roadmap! unjs/consola#335 I was reviewing the code and found that it uses columns to figure out spacing. I changed the column to 1 and got the date on the right; That's a win! Just need to figure out how to format it without writing a custom reporter... const logger = createConsola({
formatOptions: {
columns: 1,
colors: false,
compact: false,
date: true,
},
});
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JessieVela
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It will be part of v4 roadmap! unjs/consola#335
I was reviewing the code and found that it uses columns to figure out spacing. I changed the column to 1 and got the date on the right; That's a win! Just need to figure out how to format it without writing a custom reporter...