How do I show log entries with Log verbosity?

When I want to log stuff with UE_LOG I use the category LogActor and verbosity Warning. If I use verbosity Log, nothing shows up.

How do I show log entries with Log verbosity?

1 Like

Edit DefaultEngine.ini in your game’s config directory and find (or add) section like one below:

[Core.Log]
LogActor=VeryVerbose

(you can also use: Verbose, Log, Warning etc)

5 Likes

Hi, sorry for piggybagging on old question, but i asked this, trying to find a way to turn logging off for Launcher. Is that possible? Tried None, Error, and false but nothing seemed to work.

is there any options?

Thanks anyway and sorry if misplaced question.

Is there a way to set all logging to be veryverbose by default? There are a lot of categories and instead of setting them individually, I want them all to be set by default.

Looking at the source it appears there is a fake logging category called “Global”

1 Like

just in case: How to set log verbosity via command line with -LogCmds | Unreal engine Code Snippet