{"id":19991803,"url":"https://github.com/SteeltoeOSS/Logging","last_synced_at":"2025-05-04T11:30:20.932Z","repository":{"id":69793157,"uuid":"99572909","full_name":"SteeltoeOSS/Logging","owner":"SteeltoeOSS","description":"Logging Extensions","archived":true,"fork":false,"pushed_at":"2019-05-15T14:03:16.000Z","size":136,"stargazers_count":16,"open_issues_count":0,"forks_count":9,"subscribers_count":10,"default_branch":"dev","last_synced_at":"2024-11-13T04:54:15.970Z","etag":null,"topics":["logging"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SteeltoeOSS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-07T11:54:47.000Z","updated_at":"2023-01-28T18:19:25.000Z","dependencies_parsed_at":"2023-03-17T00:45:41.750Z","dependency_job_id":null,"html_url":"https://github.com/SteeltoeOSS/Logging","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FLogging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FLogging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FLogging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteeltoeOSS%2FLogging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SteeltoeOSS","download_url":"https://codeload.github.com/SteeltoeOSS/Logging/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252329016,"owners_count":21730536,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["logging"],"created_at":"2024-11-13T04:51:55.199Z","updated_at":"2025-05-04T11:30:20.928Z","avatar_url":"https://github.com/SteeltoeOSS.png","language":"C#","readme":"# .NET Logging Extensions\n\n\u003e NOTICE: This repository has been relocated as a sub-directory under the [Steeltoe](https://github.com/SteeltoeOSS/steeltoe) repository. All issues and future development will be done under that repository.\n\nThis repo contains a Logging extension that when used with the Steeltoe Management Logger Endpoint enables changing the Logging levels for a running application dynamically using the Pivotal Apps manager console.\n\nThis logger is simply a wrapper around the Microsoft Console logger, but enables querying and dynamically changing the logging levels of all the currently active loggers.\n\nWindows Master (Stable):  [![AppVeyor Master](https://ci.appveyor.com/api/projects/status/oj7275o04e7u2jk3/branch/master?svg=true)](https://ci.appveyor.com/project/steeltoe/Logging)\n\nWindows Dev (Less Stable):  [![AppVeyor Dev](https://ci.appveyor.com/api/projects/status/oj7275o04e7u2jk3/branch/dev?svg=true)](https://ci.appveyor.com/project/steeltoe/logging)\n\nLinux/OS X Master (Stable): [![Travis Master](https://travis-ci.org/SteeltoeOSS/Logging.svg?branch=master)](https://travis-ci.org/SteeltoeOSS/Logging)\n\nLinux/OS X Dev (Less Stable): [![Travis Dev](https://travis-ci.org/SteeltoeOSS/Logging.svg?branch=dev)](https://travis-ci.org/SteeltoeOSS/Logging)\n\n## .NET Runtime \u0026 Framework Support\n\nLike the ASP.NET Core Logging providers, these providers are intended to support both .NET 4.6+ and .NET Core (CoreCLR/CoreFX) run-times.  The providers are built and unit tested on Windows, Linux and OSX.\n\nWhile the primary usage of the providers is intended to be with ASP.NET Core applications, they should also work fine with UWP, Console and ASP.NET 4.x apps.\n\nCurrently all of the code and samples have been tested on .NET Core 1.1, .NET 4.6.x, and on ASP.NET Core 1.1.0.\n\n## Usage\n\nSee the [Steeltoe documentation](https://steeltoe.io/) for information on how to use these components in your applications.\n\n## Nuget Feeds\n\nAll new configuration provider development is done on the dev branch. More stable versions of the providers can be found on the master branch. The latest prebuilt packages from each branch can be found on one of two MyGet feeds. Released version can be found on nuget.org.\n\n- [Development feed (Less Stable)](https://www.myget.org/gallery/steeltoedev)\n- [Master feed (Stable)](https://www.myget.org/gallery/steeltoemaster)\n- [Release or Release Candidate feed](https://www.nuget.org/).\n\n## Building Pre-requisites\n\nTo build and run the unit tests:\n\n1. .NET Core SDK\n\n## Building Packages \u0026 Running Tests - Windows\n\nTo build the packages on windows:\n\n1. git clone ...\n2. cd clone directory\n3. Install .NET Core SDK\n4. dotnet restore src\n5. cd src\\\u003cproject\u003e (e.g. cd src\\Steeltoe.Extensions.Logging.CloudFoundry)\n6. dotnet pack --configuration Release or Debug\n\nThe resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src\\Steeltoe.Extensions.Logging.CloudFoundry\\bin\n\nTo run the unit tests:\n\n1. git clone ...\n2. cd clone directory\n3. Install .NET Core SDK\n4. dotnet restore test\n5. cd test\\\u003ctest project\u003e (e.g. cd test\\Steeltoe.Extensions.Logging.CloudFoundry.Test)\n6. dotnet xunit -verbose\n\n## Building Packages \u0026 Running Tests - Linux/OSX\n\nTo build the packages on Linux/OSX:\n\n1. git clone ...\n2. cd clone directory\n3. Install .NET Core SDK\n4. dotnet restore src\n5. cd src/{project} (e.g.. cd src/Steeltoe.Extensions.Logging.CloudFoundry)\n6. dotnet pack --configuration Release or Debug\n\nThe resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Extensions.Logging.CloudFoundry/bin\n\nTo run the unit tests:\n\n1. git clone ...\n2. cd clone directory\n3. Install .NET Core SDK\n4. dotnet restore test\n5. cd test\\\u003ctest project\u003e (e.g. cd test/Steeltoe.Extensions.Logging.CloudFoundry.Test)\n6. dotnet xunit -verbose -framework netcoreapp2.0\n\n## Sample Applications\n\nSee the [Samples](https://github.com/SteeltoeOSS/Samples) repo for examples of how to use these packages.","funding_links":[],"categories":["C\\#"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSteeltoeOSS%2FLogging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSteeltoeOSS%2FLogging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSteeltoeOSS%2FLogging/lists"}