|
11 | 11 | * \note If you want to record both audio and video, you'll have to use |
12 | 12 | * two different recorders. Any muxing in the same container will have |
13 | 13 | * to be done in the post-processing phase. |
14 | | - * |
| 14 | + * |
15 | 15 | * \ingroup core |
16 | 16 | * \ref core |
17 | 17 | */ |
18 | | - |
| 18 | + |
19 | 19 | #include <arpa/inet.h> |
20 | 20 | #include <sys/stat.h> |
21 | 21 | #include <errno.h> |
@@ -48,10 +48,10 @@ void janus_recorder_init(gboolean tempnames, const char *extension) { |
48 | 48 | rec_tempname = TRUE; |
49 | 49 | if(extension == NULL) { |
50 | 50 | rec_tempext = g_strdup("tmp"); |
51 | | - JANUS_LOG(LOG_INFO, " -- No extension provided, using default one (tmp)"); |
| 51 | + JANUS_LOG(LOG_INFO, " -- No extension provided, using default one (tmp)\n"); |
52 | 52 | } else { |
53 | 53 | rec_tempext = g_strdup(extension); |
54 | | - JANUS_LOG(LOG_INFO, " -- Using temporary extension .%s", rec_tempext); |
| 54 | + JANUS_LOG(LOG_INFO, " -- Using temporary extension .%s\n", rec_tempext); |
55 | 55 | } |
56 | 56 | } |
57 | 57 | } |
|
0 commit comments