sms: Print 'network' or 'mobile' when creating the SMC/SMR
diff --git a/src/gsm/gsm0411_smc.c b/src/gsm/gsm0411_smc.c
index ff68c08..297850e 100644
--- a/src/gsm/gsm0411_smc.c
+++ b/src/gsm/gsm0411_smc.c
@@ -83,7 +83,8 @@
 	inst->mm_send = mm_send;
 
 	LOGP(DLSMS, LOGL_INFO,
-		SMC_LOG_STR "instance created\n", inst->id);
+		SMC_LOG_STR "instance created for %s\n",
+		inst->id, inst->network ? "network" : "mobile");
 }
 
 /* clear instance */
diff --git a/src/gsm/gsm0411_smr.c b/src/gsm/gsm0411_smr.c
index c6c85e1..79d8111 100644
--- a/src/gsm/gsm0411_smr.c
+++ b/src/gsm/gsm0411_smr.c
@@ -81,8 +81,8 @@
 	inst->rp_timer.cb = rp_timer_expired;
 
 	LOGP(DLSMS, LOGL_INFO,
-		SMR_LOG_STR "instance created for %d\n",
-		inst->id, inst->network);
+		SMR_LOG_STR "instance created for %s.\n",
+		inst->id, inst->network ? "network" : "mobile");
 }
 
 /* clear instance */