- Timestamp:
- Sep 23, 2016, 12:06:02 AM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 2763582
- Parents:
- 784de2f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/utils/log.c
r784de2f r6e5dd2b 1 /* 2 Copyright (C) 2016 Paul Brossier <piem@aubio.org> 3 4 This file is part of aubio. 5 6 aubio is free software: you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation, either version 3 of the License, or 9 (at your option) any later version. 10 11 aubio is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with aubio. If not, see <http://www.gnu.org/licenses/>. 18 19 */ 20 1 21 #include "config.h" 2 22 #include "aubio_priv.h" … … 18 38 if (level == AUBIO_LOG_DBG || level == AUBIO_LOG_ERR) { 19 39 out = stderr; 20 }21 if (data != NULL) {22 fprintf(out, "%s", (char_t *)data);23 40 } 24 41 fprintf(out, "%s", message);
Note: See TracChangeset
for help on using the changeset viewer.