diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-04-02 08:28:59 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-02 08:47:02 +0200 |
| commit | 1a5aaabb8a3d67a039ad120bb5d8d418467cac4e (patch) | |
| tree | 4090f9ae3b6e908b2066ebb1cc7c1cffb51ca734 /src/httprpc.cpp | |
| parent | Merge #10136: build: Disable Wshadow warning (diff) | |
| parent | Change LogAcceptCategory to use uint32_t rather than sets of strings. (diff) | |
| download | discoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.tar.xz discoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.zip | |
Merge #9424: Change LogAcceptCategory to use uint32_t rather than sets of strings.
6b3bb3d Change LogAcceptCategory to use uint32_t rather than sets of strings. (Gregory Maxwell)
Tree-SHA512: ebb5bcf9a7d00a32dd1390b727ff4d29330a038423611da01268d8e1d2c0229e52a1098e751d4e6db73ef4ae862e1e96d38249883fcaf12b68f55ebb01035b34
Diffstat (limited to 'src/httprpc.cpp')
| -rw-r--r-- | src/httprpc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp index 8ac6925ac..21c64c5c8 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -233,7 +233,7 @@ static bool InitRPCAuthentication() bool StartHTTPRPC() { - LogPrint("rpc", "Starting HTTP RPC server\n"); + LogPrint(BCLog::RPC, "Starting HTTP RPC server\n"); if (!InitRPCAuthentication()) return false; @@ -247,12 +247,12 @@ bool StartHTTPRPC() void InterruptHTTPRPC() { - LogPrint("rpc", "Interrupting HTTP RPC server\n"); + LogPrint(BCLog::RPC, "Interrupting HTTP RPC server\n"); } void StopHTTPRPC() { - LogPrint("rpc", "Stopping HTTP RPC server\n"); + LogPrint(BCLog::RPC, "Stopping HTTP RPC server\n"); UnregisterHTTPHandler("/", true); if (httpRPCTimerInterface) { RPCUnsetTimerInterface(httpRPCTimerInterface); |