Changeset 41b985f for src/utils/log.c
- Timestamp:
- Mar 12, 2017, 11:26:24 AM (8 years ago)
- Branches:
- sampler
- Children:
- bde49c4a
- Parents:
- 71f2e5f (diff), 67b6618 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/utils/log.c
r71f2e5f r41b985f 19 19 */ 20 20 21 #include "config.h"22 21 #include "aubio_priv.h" 23 22 #include "log.h" … … 36 35 FILE *out; 37 36 out = stdout; 38 if (level == AUBIO_LOG_ DBG || level == AUBIO_LOG_ERR) {37 if (level == AUBIO_LOG_ERR || level == AUBIO_LOG_DBG || level == AUBIO_LOG_WRN) { 39 38 out = stderr; 40 39 }
Note: See TracChangeset
for help on using the changeset viewer.