This is a known bug in MvvmCross 5.4 and will be fixed in a future version.
, , Setup GetDefaultLogProviderType, MvxLogProviderType.None, :
protected override MvxLogProviderType GetDefaultLogProviderType() 
    => MvxLogProviderType.None;
, IMvxLog, LinkerPleaseInclude.cs:
using System;
public void Include(ConsoleColor color)
{
    Console.Write("");
    Console.WriteLine("");
    color = Console.ForegroundColor;
    Console.ForegroundColor = ConsoleColor.Red;
    Console.ForegroundColor = ConsoleColor.Yellow;
    Console.ForegroundColor = ConsoleColor.Magenta;
    Console.ForegroundColor = ConsoleColor.White;
    Console.ForegroundColor = ConsoleColor.Gray;
    Console.ForegroundColor = ConsoleColor.DarkGray;
}