@@ -35,7 +35,7 @@ impl HostService for HostApiHandler {
3535 & self ,
3636 _request : Request < HostnameRequest > ,
3737 ) -> Result < Response < HostnameResponse > , Status > {
38- info ! ( "HOST_API_HANDLER : Received Hostname request." ) ;
38+ info ! ( "HostApi : Received Hostname request." ) ;
3939 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
4040 let cmd = Command :: GetHostname ( resp_tx) ;
4141 self . dispatcher_tx
@@ -56,7 +56,7 @@ impl HostService for HostApiHandler {
5656 & self ,
5757 _request : Request < MemoryRequest > ,
5858 ) -> Result < Response < MemoryResponse > , Status > {
59- info ! ( "HOST_API_HANDLER : Received GetMemory request." ) ;
59+ info ! ( "HostApi : Received GetMemory request." ) ;
6060 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
6161 let cmd = Command :: GetMemory ( resp_tx) ;
6262 self . dispatcher_tx
@@ -77,7 +77,7 @@ impl HostService for HostApiHandler {
7777 & self ,
7878 _request : Request < GetCpuInfoRequest > ,
7979 ) -> Result < Response < GetCpuInfoResponse > , Status > {
80- info ! ( "HOST_API_HANDLER : Received GetCPUInfo request." ) ;
80+ info ! ( "HostApi : Received GetCPUInfo request." ) ;
8181 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
8282 let cmd = Command :: GetCPUInfo ( resp_tx) ;
8383 self . dispatcher_tx
@@ -98,7 +98,7 @@ impl HostService for HostApiHandler {
9898 & self ,
9999 _request : Request < GetNetworkInfoRequest > ,
100100 ) -> Result < Response < GetNetworkInfoResponse > , Status > {
101- info ! ( "HOST_API_HANDLER : Received GetNetworkInfo request." ) ;
101+ info ! ( "HostApi : Received GetNetworkInfo request." ) ;
102102 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
103103 let cmd = Command :: GetNetworkInfo ( resp_tx) ;
104104 self . dispatcher_tx
@@ -119,7 +119,7 @@ impl HostService for HostApiHandler {
119119 & self ,
120120 request : Request < ShutdownRequest > ,
121121 ) -> Result < Response < ShutdownResponse > , Status > {
122- info ! ( "HOST_API_HANDLER : Received Shutdown request." ) ;
122+ info ! ( "HostApi : Received Shutdown request." ) ;
123123 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
124124 let cmd = Command :: Shutdown ( request. into_inner ( ) , resp_tx) ;
125125 self . dispatcher_tx
@@ -140,7 +140,7 @@ impl HostService for HostApiHandler {
140140 & self ,
141141 request : Request < RebootRequest > ,
142142 ) -> Result < Response < RebootResponse > , Status > {
143- info ! ( "HOST_API_HANDLER : Received Reboot request." ) ;
143+ info ! ( "HostApi : Received Reboot request." ) ;
144144 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
145145 let cmd = Command :: Reboot ( request. into_inner ( ) , resp_tx) ;
146146 self . dispatcher_tx
@@ -161,7 +161,7 @@ impl HostService for HostApiHandler {
161161 & self ,
162162 request : Request < UpgradeFeosBinaryRequest > ,
163163 ) -> Result < Response < UpgradeFeosBinaryResponse > , Status > {
164- info ! ( "HOST_API_HANDLER : Received UpgradeFeosBinary request." ) ;
164+ info ! ( "HostApi : Received UpgradeFeosBinary request." ) ;
165165 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
166166 let cmd = Command :: UpgradeFeosBinary ( request. into_inner ( ) , resp_tx) ;
167167 self . dispatcher_tx
@@ -182,7 +182,7 @@ impl HostService for HostApiHandler {
182182 & self ,
183183 _request : Request < StreamKernelLogsRequest > ,
184184 ) -> Result < Response < Self :: StreamKernelLogsStream > , Status > {
185- info ! ( "HOST_API_HANDLER : Received StreamKernelLogs request." ) ;
185+ info ! ( "HostApi : Received StreamKernelLogs request." ) ;
186186 let ( stream_tx, stream_rx) = mpsc:: channel ( 128 ) ;
187187 let cmd = Command :: StreamKernelLogs ( stream_tx) ;
188188 self . dispatcher_tx
@@ -197,7 +197,7 @@ impl HostService for HostApiHandler {
197197 & self ,
198198 _request : Request < StreamFeosLogsRequest > ,
199199 ) -> Result < Response < Self :: StreamFeOSLogsStream > , Status > {
200- info ! ( "HOST_API_HANDLER : Received StreamFeOSLogs request." ) ;
200+ info ! ( "HostApi : Received StreamFeOSLogs request." ) ;
201201 let ( stream_tx, stream_rx) = mpsc:: channel ( 128 ) ;
202202 let cmd = Command :: StreamFeOSLogs ( stream_tx) ;
203203 self . dispatcher_tx
@@ -212,7 +212,7 @@ impl HostService for HostApiHandler {
212212 & self ,
213213 _request : Request < GetVersionInfoRequest > ,
214214 ) -> Result < Response < GetVersionInfoResponse > , Status > {
215- info ! ( "HOST_API_HANDLER : Received GetVersionInfo request." ) ;
215+ info ! ( "HostApi : Received GetVersionInfo request." ) ;
216216 let ( resp_tx, resp_rx) = oneshot:: channel ( ) ;
217217 let cmd = Command :: GetVersionInfo ( resp_tx) ;
218218 self . dispatcher_tx
0 commit comments