Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: csys/ServiceStack.Logging
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ServiceStackV3/ServiceStack.Logging
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 20 commits
  • 60 files changed
  • 3 contributors

Commits on May 22, 2013

  1. In IIS integrated mode Elmah fails at application start (Can't access…

    … HttpContext.Current.Request)
    
    A workaround is described here: http://stackoverflow.com/a/2196594/618331
    Just wrapped the normal Elmah log statements in try-catch and added the workaround Elmah log statements in the catch{} blocks.
    
    Can't create a real test for it, because it happens only at Application_start...
    A dummy global.asax.cs:
    
    protected void Application_Start()
    {
      try {
        //do something...
      }
      catch(Exception exc) {
        //try logging
        logger.Error("something went wrong...", exc); //this is line 50
      }
    }
    
    The exception:
    
    System.Web.HttpException (0x80004005): Request is not available in this context
       at System.Web.HttpContext.get_Request()
       at Elmah.ErrorLog.InferApplicationName(HttpContext context)
       at Elmah.ErrorLog.GetDefaultImpl(HttpContext context)
       at Elmah.ServiceContainer.GetService(Type serviceType)
       at Elmah.ErrorLog.GetDefault(HttpContext context)
       at ServiceStack.Logging.Elmah.ElmahInterceptingLogger.Error(Object message)
       at x.Application_Start() in x\Global.asax.cs:line 50
    
    Also had to update Nuget.exe because
       The schema version of 'NLog' is incompatible with version 1.6.21205.9031 of NuGet. Please upgrade NuGet to the latest version from http://go.microsoft.com/fwlink/?LinkId=213942.
    AkosLukacs committed May 22, 2013
    Configuration menu
    Copy the full SHA
    3a99d50 View commit details
    Browse the repository at this point in the history
  2. Merge pull request ServiceStackV3#17 from AkosLukacs/master

    In IIS integrated mode Elmah fails at application start (Can't access HttpContext.Current.Request)
    mythz committed May 22, 2013
    Configuration menu
    Copy the full SHA
    caefef7 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2013

  1. Catching up ServiceStack.Loging to 3.9.48

    Previous NuGet linked to 3.9.44, which caused build errors in mono.
    bchavez committed May 30, 2013
    Configuration menu
    Copy the full SHA
    5e40604 View commit details
    Browse the repository at this point in the history
  2. Merge pull request ServiceStackV3#18 from bchavez/master

    Catching up ServiceStack.Logging to 3.9.48
    mythz committed May 30, 2013
    Configuration menu
    Copy the full SHA
    23481c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2013

  1. INCR to v3.9.55

    mythz committed Jul 8, 2013
    Configuration menu
    Copy the full SHA
    6d5df80 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2013

  1. Configuration menu
    Copy the full SHA
    f2e063d View commit details
    Browse the repository at this point in the history
  2. Add version="[3,4)" restrictions to v3 NuGet packages so they're rest…

    …ricted to v3 dependencies
    mythz committed Sep 12, 2013
    Configuration menu
    Copy the full SHA
    dc1b584 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    358d507 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2013

  1. Configuration menu
    Copy the full SHA
    9e0d694 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    99ed391 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2013

  1. Merge pull request ServiceStackV3#22 from ServiceStack/v3

    Sync with V3
    mythz committed Sep 15, 2013
    Configuration menu
    Copy the full SHA
    162cf8a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49e0182 View commit details
    Browse the repository at this point in the history
  3. Merge pull request ServiceStackV3#23 from ServiceStack/v3

    resync with V3 after 1st successful CI NuGet deploy
    mythz committed Sep 15, 2013
    Configuration menu
    Copy the full SHA
    9664749 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2013

  1. Merge pull request ServiceStackV3#24 from ServiceStack/master

    re-sync v3-fixes
    mythz committed Sep 16, 2013
    Configuration menu
    Copy the full SHA
    3a2920e View commit details
    Browse the repository at this point in the history
  2. Merge pull request ServiceStackV3#25 from ServiceStack/v3-fixes

    Merge pull request ServiceStackV3#24 from ServiceStack/master
    mythz committed Sep 16, 2013
    Configuration menu
    Copy the full SHA
    b6e4f8c View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2013

  1. Configuration menu
    Copy the full SHA
    f7dabb2 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2013

  1. Configuration menu
    Copy the full SHA
    1dd738d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    05e1548 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2013

  1. Add a Contributing.md

    mythz committed Oct 13, 2013
    Configuration menu
    Copy the full SHA
    785798b View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2013

  1. Configuration menu
    Copy the full SHA
    ea44bfa View commit details
    Browse the repository at this point in the history
Loading