diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-12 20:40:32 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-12 20:40:32 +0100 |
commit | 211950a2e5ca3aa74300cea8ee5a97fc0554db8c (patch) | |
tree | 3c7eb9eb07a8fcf061261ba18d86d9f2acb7182f /src | |
parent | 38962e5630e1fd03012b858bb20f799c461fb859 (diff) | |
parent | 583efb4910a5287d8ca4a35896f751c167ec0d4d (diff) | |
download | ouroboros-211950a2e5ca3aa74300cea8ee5a97fc0554db8c.tar.gz ouroboros-211950a2e5ca3aa74300cea8ee5a97fc0554db8c.zip |
Merge branch 'be' of bitbucket.org:ouroboros-rina/ouroboros into be
Diffstat (limited to 'src')
-rw-r--r-- | src/da/main.c | 6 | ||||
-rw-r--r-- | src/ipcp/main.c | 6 | ||||
-rw-r--r-- | src/irm/main.c | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/src/da/main.c b/src/da/main.c index 2eeb7b36..e2971dca 100644 --- a/src/da/main.c +++ b/src/da/main.c @@ -1,8 +1,10 @@ -#include <stdio.h> +#define OUROBOROS_PREFIX "da" + +#include <ouroboros/logs.h> int main() { - printf("Test of the DA\n"); + LOG_DBG("Test of the DA"); return 0; } diff --git a/src/ipcp/main.c b/src/ipcp/main.c index 19397260..b67b0af9 100644 --- a/src/ipcp/main.c +++ b/src/ipcp/main.c @@ -1,8 +1,10 @@ -#include <stdio.h> +#define OUROBOROS_PREFIX "ipcp" + +#include <ouroboros/logs.h> int main() { - printf("Test of the IPCP\n"); + LOG_DBG("Test of the IPCP"); return 0; } diff --git a/src/irm/main.c b/src/irm/main.c index 6388427f..8ab071e0 100644 --- a/src/irm/main.c +++ b/src/irm/main.c @@ -1,8 +1,10 @@ -#include <stdio.h> +#define OUROBOROS_PREFIX "irm" + +#include <ouroboros/logs.h> int main() { - printf("Test of the IRM\n"); + LOG_DBG("Test of the IRM"); return 0; } |