Skip to content

Commit 2a829fb

Browse files
authored
Merge pull request #25 from nrbrook/patch-2
Fix logging module name
2 parents edb6d6e + 8ce757f commit 2a829fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

l7/l7_e1/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static struct sockaddr_storage server;
4242

4343
K_SEM_DEFINE(lte_connected, 0, 1);
4444

45-
LOG_MODULE_REGISTER(Lesson7_Exercise2, LOG_LEVEL_INF);
45+
LOG_MODULE_REGISTER(Lesson7_Exercise1, LOG_LEVEL_INF);
4646

4747

4848
/**@brief Resolves the configured hostname. */

l7/l7_e1_sol/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static struct sockaddr_storage server;
4242

4343
K_SEM_DEFINE(lte_connected, 0, 1);
4444

45-
LOG_MODULE_REGISTER(Lesson7_Exercise2, LOG_LEVEL_INF);
45+
LOG_MODULE_REGISTER(Lesson7_Exercise1, LOG_LEVEL_INF);
4646

4747

4848
/**@brief Resolves the configured hostname. */

0 commit comments

Comments
 (0)