Skip to content

Commit a729887

Browse files
code clean up
1 parent ce7603d commit a729887

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commander/ping.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ command
2222

2323
// Log the response from the server
2424
if (response.status === 200) {
25-
console.log('Server is running');
25+
console.log('SmartUI Server is running');
2626
console.log(`Response: ${JSON.stringify(response.data)}`); // Log response data if needed
2727
} else {
2828
console.log('Failed to reach the server');
2929
}
3030
} catch (error: any) {
3131
// Handle any errors during the HTTP request
32-
console.error('Error while pinging server:', error.message);
32+
console.error('SmartUI server is not running ', error.message);
3333
}
3434
});
3535

0 commit comments

Comments
 (0)