[feature request] Make logging part configurable
See original GitHub issuesomething like
public interface ILogSink
{
bool IsEnabled(LogEventLevel level, string type);
void Log(LogEventLevel level, string type, object? source, string messageTemplate);
void Log(
LogEventLevel level,
string type,
object? source,
string messageTemplate,
params object?[] propertyValues);
}
and in SeeShark
have a default console sink and then in the end user logic just implement a sink adapter and replace the default one to record logs.
Issue Analytics
- State:
- Created 7 months ago
- Comments:11 (4 by maintainers)
Top Results From Across the Web
Feature Request: Configurable logging options · Issue #159
With Feature Request #101 implemented this use case might be oboslete. But it depends on how the logging part will get implemented with...
Read more >Feature request: Make log-level configurable in config.toml (#1049)
Right now log-level is only configurable as a commandline option in /etc/init/gitlab-runner.conf. This is cumbersome because this files gets overwritten on ...
Read more >Config Manager Ticker App Feature Request - configurable ...
We recommend reviewing what is submitted before posting, in case your idea has already been submitted by another community member. If it has...
Read more >Feature Request: syslog logging level
There have been numerous threads going back years asking to make the syslog logging level more configurable (vs only allowing INFO, WARN, and...
Read more >Feature request: logging
Ideally, the logging mechanism is configurable (desitination, verbosity, etc) so it makes sense in the context of the rest of the application.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, I’ll see what I can do. Ideally you’ll just need to setup a delegate, no need to create an interface.
nice one, thanks so much ❤️