Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/01/10 13:58:24 (14 years ago)
Author:
kgrading
Message:

Removed References to HiveLogging and updated the default logging mechanism (#991)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Core/3.2/ConfigurationManager/UptimeManager.cs

    r3220 r3578  
    99using HeuristicLab.Hive.Contracts.BusinessObjects;
    1010using HeuristicLab.Hive.Contracts;
     11using HeuristicLab.Tracing;
    1112
    1213namespace HeuristicLab.Hive.Client.Core.ConfigurationManager {
     
    4950      }
    5051      catch (Exception e) {
    51         Logging.Instance.Error(this.ToString(), "Persistance of the Calendar failed!", e);
     52        Logger.Error("Persistance of the Calendar failed!", e);
    5253      }
    5354      finally {
     
    6869        }
    6970        catch (Exception e) {
    70           Logging.Instance.Error(this.ToString(), "Deserialization of Calendar failed", e);
    71           Logging.Instance.Info(this.ToString(), "Starting with a new one");
     71          Logger.Error("Deserialization of Calendar failed", e);
     72          Logger.Info("Starting with a new one");
    7273          _appContainer = new AppointmentContainer();
    7374          CalendarAvailable = false;
Note: See TracChangeset for help on using the changeset viewer.