aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 18:05:43 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 18:05:43 +0000
commitb24edee2ba1446747594f0bd55d2c6154648ac4e (patch)
tree14970957b2a8609ec5321f54cceca478cd1c89cd /apps
parent2a4ddf01ad7263975ccf987907e9aa8bbfbfe60b (diff)
Put in missing \ns on the end of ast_logs (issue #7936 reported by wojtekka)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43933 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_alarmreceiver.c2
-rw-r--r--apps/app_festival.c2
-rw-r--r--apps/app_followme.c2
-rw-r--r--apps/app_playback.c2
-rw-r--r--apps/app_rpt.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/app_alarmreceiver.c b/apps/app_alarmreceiver.c
index d2741df93..8afce25d5 100644
--- a/apps/app_alarmreceiver.c
+++ b/apps/app_alarmreceiver.c
@@ -136,7 +136,7 @@ static void database_increment( char *key )
res = ast_db_put(db_family, key, value);
if((res)&&(option_verbose >= 4))
- ast_verbose(VERBOSE_PREFIX_4 "AlarmReceiver: database_increment write error");
+ ast_verbose(VERBOSE_PREFIX_4 "AlarmReceiver: database_increment write error\n");
return;
}
diff --git a/apps/app_festival.c b/apps/app_festival.c
index cf0dfcba4..6e7a4ffd4 100644
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -485,7 +485,7 @@ static int festival_exec(struct ast_channel *chan, void *vdata)
* */
if ( read_data == -1 )
{
- ast_log(LOG_WARNING,"Unable to read from cache/festival fd");
+ ast_log(LOG_WARNING,"Unable to read from cache/festival fd\n");
close(fd);
ast_config_destroy(cfg);
ast_module_user_remove(u);
diff --git a/apps/app_followme.c b/apps/app_followme.c
index 0ee3abc3a..f83cfa165 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -951,7 +951,7 @@ static int app_exec(struct ast_channel *chan, void *data)
if (option_debug)
ast_log(LOG_DEBUG, "New profile %s.\n", args.followmeid);
if (!f) {
- ast_log(LOG_WARNING, "Profile requested, %s, not found in the configuration.", args.followmeid);
+ ast_log(LOG_WARNING, "Profile requested, %s, not found in the configuration.\n", args.followmeid);
res = -1;
} else {
/* XXX TODO: Reinsert the db check value to see whether or not follow-me is on or off */
diff --git a/apps/app_playback.c b/apps/app_playback.c
index 396ed71e6..5dfb589f7 100644
--- a/apps/app_playback.c
+++ b/apps/app_playback.c
@@ -341,7 +341,7 @@ static int __say_init(int fd, int argc, char *argv[])
return RESULT_SHOWUSAGE;
mode = argv[2];
- ast_log(LOG_WARNING, "init say.c from %s to %s", old_mode, mode);
+ ast_log(LOG_WARNING, "init say.c from %s to %s\n", old_mode, mode);
if (!strcmp(mode, old_mode)) {
ast_log(LOG_WARNING, "say mode is %s already\n", mode);
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 305e59eb4..ac966e9bb 100644
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -2618,7 +2618,7 @@ pthread_attr_t attr;
rpt_mutex_lock(&myrpt->lock);
remque((struct qlem *) tele); /* We don't like stuck transmitters, remove it from the queue */
rpt_mutex_unlock(&myrpt->lock);
- ast_log(LOG_WARNING, "Could not create telemetry thread: %s",strerror(res));
+ ast_log(LOG_WARNING, "Could not create telemetry thread: %s\n",strerror(res));
}
return;
}