Leszek

Results 12 comments of Leszek

any update when it will be fixed?

confirm, Console logger is removed.

I am using Rollbar.NetCore.AspNet project directly: with stripped out depedency on HttpContextAncestor and some other mods and this works, does not remove Console logger. Any chance to have a Rollbar.NetCore...

WorkerService is not using ASP / HTTP things. I reviewed your latest changes and the netPlatfromExtension looks good. BTW: No need for RollbarLoggerFactory class? In Programcs CreateHostBuilder(): I added these...

Same issue. Was using : ``` private void ConfigureRollbarSingleton() { string rollbarEnabled = Configuration.GetSection("Rollbar:Enabled").Value; if (rollbarEnabled?.ToLowerInvariant() != "false") { string rollbarAccessToken = Configuration.GetSection("Rollbar:AccessToken").Value; string rollbarEnvironment = Configuration.GetSection("Rollbar:Environment").Value; RollbarLocator.RollbarInstance // minimally...

@jensProTeria // Assembly location: D:\NugetCache\rollbar\3.5.0\lib\netcoreapp2.1\Rollbar.dll `/// Loads the rollbar configuration. /// Name of the configuration file. /// The configuration file path. /// Either IRollbarConfig or null if no configuration file...

@akornich : there is no transformations in Core, you should not hardcode 'appsettings.json'.

this ctor is sufficient , but how to set up log4net(?)/ Rollbar to use it? `public RollbarAppender( string rollbarAccessToken, string rollbarEnvironment, TimeSpan? rollbarBlockingLoggingTimeout )`

grabbed code from Log4NET appender project (to not use nuget) and still, although passing config with access token, Rollbar code is searching for settings (like in appsettings.json) ? There are...