diff options
author | Thomas White <taw@physics.org> | 2010-02-03 12:24:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-02-03 12:24:52 +0100 |
commit | bb8cd0371f2cba96126112cbb720c2149c283c78 (patch) | |
tree | 9c3a7727e1f736b512618eee150688f513a08248 /src/dirax.c | |
parent | 7df59f9bc7acedb5f8aa01ad12f2f22d271a0f58 (diff) |
Remove many debug messages
Diffstat (limited to 'src/dirax.c')
-rw-r--r-- | src/dirax.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dirax.c b/src/dirax.c index 6b77d888..9220c8cb 100644 --- a/src/dirax.c +++ b/src/dirax.c @@ -54,7 +54,7 @@ static void dirax_parseline(const char *line, struct image *image) if ( copy[i] == '\r' ) copy[i]='r'; if ( copy[i] == '\n' ) copy[i]='\0'; } - STATUS("DirAx: %s\n", copy); + //STATUS("DirAx: %s\n", copy); free(copy); if ( strstr(line, "reflections from file") ) { @@ -120,7 +120,7 @@ static void dirax_sendline(const char *line, struct image *image) if ( copy[i] == '\r' ) copy[i]='\0'; if ( copy[i] == '\n' ) copy[i]='\0'; } - STATUS("To DirAx: '%s'\n", copy); + //STATUS("To DirAx: '%s'\n", copy); free(copy); } @@ -168,7 +168,6 @@ static void dirax_send_next(struct image *image) default: image->dirax_step = 0; - STATUS("DirAx is idle\n"); g_main_loop_quit(image->dirax_ml); return; |