/

Usage with Local Environment Variables

Use local environment variables with an app.config file. Your file should look like this:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <appSettings>
        <add key="ByteHide.Logger.Environment" value="development"/>
        <add key="ByteHide.Logger.Token" value="e34762f8-8ad6-0000-0000-000000000000"/>
    </appSettings>
</configuration>

But if you want to override the environment variables, you can still do it::

Log.SetProjectToken("your-project-token");
Log.AddMetaContext("Environment", "Production");
Previous
Usage with Global Environment Variables