I'm using serilog/serilog-sinks-xamarin as described here
In .Android project I added following code:
Log.Logger = new LoggerConfiguration().WriteTo.AndroidLog().Enrich.WithProperty("Tag", "CustomTag").CreateLogger();
And calling it from portable class:
Log.Information("App is Starting");
I can see this line in device log, however tag is blank: missing tag