How to print Log from Widget?

How to print Log from Widget?

Because of IOS requirements i can’t see log from app “Shipping”

so i need to see log from Widget or something from IOS mobile. (iphone)

somewhere in the forum:

put this in YourAppName.target.cs

        // ! Make sure that you run app from engine sources if need logging in shipping
        // Use these config options in shipping to enable logs, and to enable debugger.
        if (Configuration == UnrealTargetConfiguration.Shipping)
        {
            BuildEnvironment = TargetBuildEnvironment.Unique;
            bUseChecksInShipping = true;
            bUseLoggingInShipping = true;
        }

is it working did you tried?

yes