summaryrefslogtreecommitdiff
path: root/cesar/maximus
diff options
context:
space:
mode:
authorThierry Carré2013-02-18 19:02:57 +0100
committerThierry Carré2013-02-22 16:45:07 +0100
commit668ae87c9040e6ab92244995bff4664295cac7da (patch)
tree02391074ebbc18a2b3aff058c09aef37e784a33b /cesar/maximus
parent78416a6999595edf92d50ab1528d4420fca279a9 (diff)
cesar: keep log to stderr instead forcing to stdout, refs #2979
Diffstat (limited to 'cesar/maximus')
-rw-r--r--cesar/maximus/python/utest/stationtest/src/hello_world.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/main_example.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_cb.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_ether.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_false_alarm.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_log.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_send.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_station.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_tx_rx.c1
10 files changed, 0 insertions, 10 deletions
diff --git a/cesar/maximus/python/utest/stationtest/src/hello_world.c b/cesar/maximus/python/utest/stationtest/src/hello_world.c
index e393a5ff1f..e740d161a7 100644
--- a/cesar/maximus/python/utest/stationtest/src/hello_world.c
+++ b/cesar/maximus/python/utest/stationtest/src/hello_world.c
@@ -21,7 +21,6 @@ int main(void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
diag_write_string("hello by eCos\n");
return 0;
}
diff --git a/cesar/maximus/python/utest/stationtest/src/main_example.c b/cesar/maximus/python/utest/stationtest/src/main_example.c
index fb86cfdc63..a2023dc761 100644
--- a/cesar/maximus/python/utest/stationtest/src/main_example.c
+++ b/cesar/maximus/python/utest/stationtest/src/main_example.c
@@ -362,7 +362,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "function_1", (void*)&my_function1, NULL);
fcall_register(my_station.fcall, "function_2", (void*)&my_function2, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_cb.c b/cesar/maximus/python/utest/stationtest/src/test_cb.c
index dc635369f4..2625d4fb5c 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_cb.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_cb.c
@@ -33,7 +33,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "get_seg", (void*)&get_seg, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_ether.c b/cesar/maximus/python/utest/stationtest/src/test_ether.c
index 9a425ad295..824ee01e76 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_ether.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_ether.c
@@ -186,7 +186,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register (my_station.fcall, "init_ether", (void*) &init_ether, NULL);
fcall_register (my_station.fcall, "uninit_ether", (void*) &uninit_ether,
diff --git a/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c b/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
index 390baa4ac0..48ad76537f 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
@@ -148,7 +148,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "init_phy", (void*)&init_phy, NULL);
fcall_register(my_station.fcall, "activate_rx", (void*)&activate_rx, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c b/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
index 4cf93c751d..93e57d1efa 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
@@ -140,7 +140,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
maximus_phy_dur_init (&my_station);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_log.c b/cesar/maximus/python/utest/stationtest/src/test_log.c
index 68ff126172..19233bcf81 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_log.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_log.c
@@ -155,7 +155,6 @@ int test_log (fcall_ctx_t *fcall, fcall_param_t **param, sci_msg_t **msg,
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
station_log (&my_station, STATION_LOG_ERROR, STATION_LOGTYPE_STATION,
"%s", min);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_send.c b/cesar/maximus/python/utest/stationtest/src/test_send.c
index 93229544cf..2725390d41 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_send.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_send.c
@@ -217,7 +217,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "set_tonemask", (void*)&set_tonemask, NULL);
fcall_register(my_station.fcall, "prepare_rx", (void*)&prepare_rx, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_station.c b/cesar/maximus/python/utest/stationtest/src/test_station.c
index e0fa1305f7..716ac9315e 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_station.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_station.c
@@ -140,7 +140,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
/* Initialize the HAL ipmbox. */
ctx = ipmbox_init ();
diff --git a/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c b/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
index b6049a80a9..d97188a1ef 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
@@ -336,7 +336,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "set_tonemask", (void*)&set_tonemask, NULL);
fcall_register(my_station.fcall, "prepare_rx", (void*)&prepare_rx, NULL);