├── .editorconfig ├── .gitattributes ├── .gitignore ├── .idea └── .idea.serilog-enrichers-environment │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── Build.ps1 ├── CHANGES.md ├── LICENSE ├── README.md ├── appveyor.yml ├── assets ├── Serilog.snk ├── Serilog.svg └── serilog-enricher-nuget.png ├── serilog-enrichers-environment.sln ├── src └── Serilog.Enrichers.Environment │ ├── Enrichers │ ├── CachedPropertyEnricher.cs │ ├── EnvironmentNameEnricher.cs │ ├── EnvironmentUserNameEnricher.cs │ ├── EnvironmentVariableEnricher.cs │ └── MachineNameEnricher.cs │ ├── EnvironmentLoggerConfigurationExtensions.cs │ └── Serilog.Enrichers.Environment.csproj └── test └── Serilog.Enrichers.Environment.Tests ├── Enrichers ├── EnvironmenVariableEnricherTests.cs ├── EnvironmentEnvironmenNameEnricherTests.cs ├── EnvironmentMachineNameEnricherTests.cs └── EnvironmentUserNameEnricherTests.cs ├── Serilog.Enrichers.Environment.Tests.csproj └── Support ├── CollectingSink.cs ├── DelegateDisposable.cs ├── DelegatingEnricher.cs ├── DelegatingSink.cs ├── DisposableLogger.cs ├── DisposeTrackingSink.cs ├── Extensions.cs └── Some.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.serilog-enrichers-environment/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.idea/.idea.serilog-enrichers-environment/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.serilog-enrichers-environment/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.idea/.idea.serilog-enrichers-environment/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.serilog-enrichers-environment/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.idea/.idea.serilog-enrichers-environment/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.serilog-enrichers-environment/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/.idea/.idea.serilog-enrichers-environment/.idea/vcs.xml -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/Build.ps1 -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/Serilog.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/assets/Serilog.snk -------------------------------------------------------------------------------- /assets/Serilog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/assets/Serilog.svg -------------------------------------------------------------------------------- /assets/serilog-enricher-nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/assets/serilog-enricher-nuget.png -------------------------------------------------------------------------------- /serilog-enrichers-environment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/serilog-enrichers-environment.sln -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Enrichers/CachedPropertyEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Enrichers/CachedPropertyEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Enrichers/EnvironmentNameEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Enrichers/EnvironmentNameEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Enrichers/EnvironmentUserNameEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Enrichers/EnvironmentUserNameEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Enrichers/EnvironmentVariableEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Enrichers/EnvironmentVariableEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Enrichers/MachineNameEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Enrichers/MachineNameEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/EnvironmentLoggerConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/EnvironmentLoggerConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Environment/Serilog.Enrichers.Environment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/src/Serilog.Enrichers.Environment/Serilog.Enrichers.Environment.csproj -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmenVariableEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmenVariableEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentEnvironmenNameEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentEnvironmenNameEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentMachineNameEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentMachineNameEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentUserNameEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Enrichers/EnvironmentUserNameEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Serilog.Enrichers.Environment.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Serilog.Enrichers.Environment.Tests.csproj -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/CollectingSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/CollectingSink.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/DelegateDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/DelegateDisposable.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/DelegatingEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/DelegatingEnricher.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/DelegatingSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/DelegatingSink.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/DisposableLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/DisposableLogger.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/DisposeTrackingSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/DisposeTrackingSink.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/Extensions.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Environment.Tests/Support/Some.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-environment/HEAD/test/Serilog.Enrichers.Environment.Tests/Support/Some.cs --------------------------------------------------------------------------------