Console.log no longer printing statements to the console. How to re-enable? [duplicate]

I know this may seem like a basic question but historically I have been able to put this statement into the Chrome Developer tools:

console.log("test");

and the console would then print

test

I don’t know what’s changed, but when I write console.log("test"); now it just writes out undefined. I have verbose enabled and preserve logs checked in the chrome developer tools. I understand that console.log is expected to return undefined, but it was a pretty nice quality of life feature for debugging to actually log the printed statement to the console. I don’t know why they would get rid of this. Is there any way to re-enable printing the actual logged statements instead of the result of the function for console.log in chrome dev tools?

Version: 130.0.6723.59