File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11---
22listen_on : 127.0.0.1:9753
3- worlds_path : /tmp/nix-shell.Bihv8S/tmp.YDoMbAsiBf
3+ worlds_path : /var/lib/minecraft/worlds
44current_world_name : current_world
55server_socket_path : /run/minecraft/minecraft.socket
6- users_file_path : ./ users.yaml
6+ users_file_path : /var/lib/minecraft/ users.yml
77base_url : http://127.0.0.1:9753/
88min_password_length : 10
99max_password_length : 128
10- server_properties_path : ./server.properties
Original file line number Diff line number Diff line change @@ -98,7 +98,13 @@ fn main() {
9898 let args = Args :: parse ( ) ;
9999
100100 if let Err ( err) = real_main ( args) {
101- tracing:: error!( "{err}" ) ;
101+ tracing:: error!(
102+ "{}" ,
103+ err. chain( )
104+ . map( |err| err. to_string( ) )
105+ . collect:: <Vec <_>>( )
106+ . join( ": " )
107+ ) ;
102108
103109 std:: process:: exit ( 1 ) ;
104110 }
You can’t perform that action at this time.
0 commit comments