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.Server.LINQDataAccess/3.2/VarBinaryStream.cs

    r3220 r3578  
    77using System.Data.SqlClient;
    88using System.Data;
     9using HeuristicLab.Tracing;
    910
    1011namespace HeuristicLab.Hive.Server.LINQDataAccess {
     
    253254
    254255    public void Close() {
     256      Logger.Info("Closing Stream");
    255257      if (_transaction != null) {
    256258        _transaction.Commit();
    257259        _transaction = null;
     260        Logger.Info("Transaction commited and closed");
    258261      }
    259262
     
    262265        ContextFactory.Context.Dispose();
    263266        ContextFactory.Context = null;
     267        Logger.Info("Connection and Context disposed and set null");
    264268      }
    265269    }
Note: See TracChangeset for help on using the changeset viewer.