Skip to content

Commit 237dc3f

Browse files
authored
Merge pull request #1744 from jtobin/jt/rename-rpcs-subsystem
Rename RPCS subsystem to TRPC
2 parents ca434e4 + 4f89af9 commit 237dc3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var (
5757
// finish setting them up properly with a root logger.
5858
tapdLog = addTapPkgLogger("TAPD")
5959
srvrLog = addTapPkgLogger("TSVR")
60-
rpcsLog = addTapPkgLogger("RPCS")
60+
rpcsLog = addTapPkgLogger("TRPC")
6161
)
6262

6363
// genSubLogger creates a logger for a subsystem. We provide an instance of a

rpcserver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ func (r *rpcServer) Start(cfg *Config) error {
225225
r.cfg.UniverseQueriesPerSecond, r.cfg.UniverseQueriesBurst,
226226
)
227227

228-
rpcsLog.Infof("Starting RPC Server")
228+
rpcsLog.Infof("Starting Taproot Assets RPC Server")
229229

230230
return nil
231231
}
@@ -237,7 +237,7 @@ func (r *rpcServer) Stop() error {
237237
return nil
238238
}
239239

240-
rpcsLog.Infof("Stopping RPC Server")
240+
rpcsLog.Infof("Stopping Taproot Assets RPC Server")
241241

242242
close(r.quit)
243243

0 commit comments

Comments
 (0)