File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ fn main() {
23
23
let matches = App :: new ( "chirpstack-udp-bridge" )
24
24
. version ( config:: VERSION )
25
25
. author ( "Orne Brocaar <info@brocaar.com>" )
26
- . about ( "ChirpStack UDP bridge for Concentratord compatible with the Semtech UDP protocol" )
26
+ . about ( "ChirpStack UDP Bridge for Concentratord, compatible with the Semtech UDP protocol" )
27
27
. arg (
28
28
Arg :: with_name ( "config" )
29
29
. short ( "c" )
@@ -47,14 +47,14 @@ fn main() {
47
47
. expect ( "setup logger error" ) ;
48
48
49
49
info ! (
50
- "Starting UDP Forwarder (version: {}, docs: {})" ,
50
+ "Starting ChirpStack UDP Bridge (version: {}, docs: {})" ,
51
51
config:: VERSION ,
52
- "https://www.chirpstack.io/concentratord/"
52
+ "https://github.com/brocaar/chirpstack-udp-bridge" ,
53
53
) ;
54
54
55
55
// read gateway id.
56
- let gateway_id =
57
- helpers :: get_gateway_id ( & config . concentratord . command_url ) . expect ( "get gateway_id error " ) ;
56
+ let gateway_id = helpers :: get_gateway_id ( & config . concentratord . command_url )
57
+ . expect ( "get gateway_id from concentratord failed, is concentratord running? " ) ;
58
58
59
59
info ! (
60
60
"Received gateway ID from Concentratord, gateway_id: {}" ,
You can’t perform that action at this time.
0 commit comments