Skip to content

Commit 0bee3db

Browse files
author
Mika Leppänen
committed
Changed debug traces to info traces
1 parent 1c45286 commit 0bee3db

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

source/6LoWPAN/ws/ws_pae_supp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ typedef struct {
101101
static trickle_params_t auth_trickle_params = {
102102
.Imin = TRICKLE_IMIN_120_SECS, /* 120 second; ticks are 100ms */
103103
.Imax = TRICKLE_IMIN_120_SECS << 1, /* 240 second */
104-
.k = 0, /* infinity - no consistency checking */
105-
.TimerExpirations = 3
104+
.k = 0, /* infinity - no consistency checking */
105+
.TimerExpirations = 3
106106
};
107107

108108
static void ws_pae_supp_free(pae_supp_t *pae_supp);

source/Security/protocols/fwh_sec_prot/auth_fwh_sec_prot.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ static void auth_fwh_sec_prot_state_machine(sec_prot_t *prot)
327327

328328
// Wait KMP-CREATE.request
329329
case FWH_STATE_CREATE_REQ:
330-
tr_debug("4WH: start, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
330+
tr_info("4WH: start, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
331331

332332
uint8_t *pmk = sec_prot_keys_pmk_get(prot->sec_keys);
333333
if (!pmk) { // If PMK is not set fails
@@ -402,7 +402,7 @@ static void auth_fwh_sec_prot_state_machine(sec_prot_t *prot)
402402
break;
403403

404404
case FWH_STATE_FINISH:
405-
tr_debug("4WH: finish, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
405+
tr_info("4WH: finish, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
406406

407407
// KMP-FINISHED.indication,
408408
prot->finished_ind(prot, sec_prot_result_get(&data->common), 0);

source/Security/protocols/gkh_sec_prot/auth_gkh_sec_prot.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ static void auth_gkh_sec_prot_state_machine(sec_prot_t *prot)
278278

279279
// Wait KMP-CREATE.request
280280
case GKH_STATE_CREATE_REQ:
281-
tr_debug("GKH start, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
281+
tr_info("GKH start, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
282282

283283
prot->timer_start(prot);
284284

@@ -312,7 +312,7 @@ static void auth_gkh_sec_prot_state_machine(sec_prot_t *prot)
312312
break;
313313

314314
case GKH_STATE_FINISH:
315-
tr_debug("GKH finish, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
315+
tr_info("GKH finish, eui-64: %s", trace_array(sec_prot_remote_eui_64_addr_get(prot), 8));
316316

317317
// KMP-FINISHED.indication,
318318
prot->finished_ind(prot, sec_prot_result_get(&data->common), 0);

0 commit comments

Comments
 (0)