We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7603d commit a729887Copy full SHA for a729887
src/commander/ping.ts
@@ -22,14 +22,14 @@ command
22
23
// Log the response from the server
24
if (response.status === 200) {
25
- console.log('Server is running');
+ console.log('SmartUI Server is running');
26
console.log(`Response: ${JSON.stringify(response.data)}`); // Log response data if needed
27
} else {
28
console.log('Failed to reach the server');
29
}
30
} catch (error: any) {
31
// Handle any errors during the HTTP request
32
- console.error('Error while pinging server:', error.message);
+ console.error('SmartUI server is not running ', error.message);
33
34
});
35
0 commit comments