Azure static web app custom domain fails with unknown error
A couple of days ago I was trying to add a custom domain using CNAME for an Azure static web app. When the custom domain was »
A couple of days ago I was trying to add a custom domain using CNAME for an Azure static web app. When the custom domain was »
I recently wrote about the init property accessor and property accessors in general. I was wondering for a second how access modifiers and accessors were different, »
I added cookieyes to my blog not long ago and I wanted to try out adsense and google analytics which I have not been using for »
You may have encountered the init accessor on a property in the wild and now you are wondering what it does. Does it do what you »
The easiest way to Convert a Unix timestamp to a DateTime or DateTimeOffset is to use the methods FromUnixTimeSeconds for seconds or FromUnixTimeMilliseconds for milliseconds. However »
This post describes how to make a checkbox in Google sheets. All of the examples can be found in a sheet here. The easiest way is »
Usually I would preach quality over quantity, but you always need some quantity! This is post number 400 on my blog which I started late December »
The secret to changing the log level at runtime in your application is the LoggingLevelSwitch. This can be applied in two places, one is the MinimumLevel »
This post describes how to combine serilog's property enrichment with ASP.Net's middleware and pipeline to enrich all logs in a request »
TLDR: You are likely looking for setting up an outputTemplate in your logger configuration: Log.Logger = loggerConfiguration .Enrich.FromLogContext() //remember this! .WriteTo .Console(outputTemplate: "[{Timestamp: »