Skip to content

Commit 51b2587

Browse files
author
Antti Yli-Tokola
committed
Update trace prints to make tests pass
1 parent ea8e0e9 commit 51b2587

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

main.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void print_client_ids(void)
4141
{
4242
printf("Account ID: %s\n", cloud_client->endpoint_info()->account_id.c_str());
4343
printf("Endpoint name: %s\n", cloud_client->endpoint_info()->internal_endpoint_name.c_str());
44-
printf("Device ID: %s\n\n", cloud_client->endpoint_info()->endpoint_name.c_str());
44+
printf("Device Id: %s\n\n", cloud_client->endpoint_info()->endpoint_name.c_str());
4545
}
4646

4747
void button_press(void)
@@ -107,7 +107,7 @@ int main(void)
107107
}
108108

109109
// Mount default kvstore
110-
printf("Initialize KVStore\n");
110+
printf("Application ready\n");
111111
status = kv_init_storage_config();
112112
if (status != MBED_SUCCESS) {
113113
printf("kv_init_storage_config() - failed, status %d\n", status);
@@ -126,7 +126,8 @@ int main(void)
126126
printf("NetworkInterface failed to connect with %d\n", status);
127127
return -1;
128128
}
129-
printf("Network connected with IP %s\n\n", network->get_ip_address());
129+
130+
printf("Network initialized, connected with IP %s\n\n", network->get_ip_address());
130131

131132
// Run developer flow
132133
printf("Start developer flow\n");

0 commit comments

Comments
 (0)