Skip to content

Commit

Permalink
Use ocean's new Logger
Browse files Browse the repository at this point in the history
Fixes some deprecation warnings in apps using dhtproto.
  • Loading branch information
Gavin Norman committed Nov 3, 2017
1 parent 85cb443 commit fe36222
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/Get.d
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module dhtproto.client.request.internal.Get;
*******************************************************************************/

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/GetAll.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
module dhtproto.client.request.internal.GetAll;

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/GetChannels.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
module dhtproto.client.request.internal.GetChannels;

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/GetHashRange.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
module dhtproto.client.request.internal.GetHashRange;

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;
import dhtproto.common.GetHashRange;
import swarm.neo.client.NotifierTypes;

Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/Mirror.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
module dhtproto.client.request.internal.Mirror;

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/client/request/internal/Put.d
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module dhtproto.client.request.internal.Put;
*******************************************************************************/

import ocean.transition;
import ocean.util.log.Log;
import ocean.util.log.Logger;

/*******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/node/neo/request/GetAll.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

module dhtproto.node.neo.request.GetAll;

import ocean.util.log.Log;
import ocean.util.log.Logger;

/// ditto
public abstract scope class GetAllProtocol_v0
Expand Down
2 changes: 1 addition & 1 deletion src/dhtproto/node/neo/request/Mirror.d
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

module dhtproto.node.neo.request.Mirror;

import ocean.util.log.Log;
import ocean.util.log.Logger;

version ( UnitTest )
{
Expand Down
2 changes: 1 addition & 1 deletion src/dhttest/DhtTestCase.d
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ abstract class NeoDhtTestCase : TestCase
import ocean.core.Enforce;
import ocean.task.Scheduler;
import ocean.task.Task;
import ocean.util.log.Log;
import ocean.util.log.Logger;
import dhtproto.client.DhtClient;
import Legacy = dhttest.DhtClient;
import swarm.neo.authentication.HmacDef: Key;
Expand Down

0 comments on commit fe36222

Please sign in to comment.