Changeset 67537d7
- Timestamp:
- Sep 22, 2016, 10:55:47 PM (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:
- d45f527
- Parents:
- aa5828d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/aubiomodule.c
raa5828d r67537d7 257 257 #endif 258 258 259 void 260 aubio_log_function(int level, const char *message, void *data) 261 { 262 // remove trailing \n 263 char *pos; 264 if ((pos=strchr(message, '\n')) != NULL) { 265 *pos = '\0'; 266 } 267 // warning or error 268 if (level == AUBIO_LOG_ERR) { 269 PyErr_Format(PyExc_RuntimeError, "%s", message); 270 } else { 271 PyErr_WarnEx(PyExc_UserWarning, message, 1); 272 } 273 } 274 259 275 static PyObject * 260 276 initaubio (void) … … 316 332 add_ufuncs(m); 317 333 334 aubio_log_set_level_function(AUBIO_LOG_ERR, aubio_log_function, NULL); 335 aubio_log_set_level_function(AUBIO_LOG_WRN, aubio_log_function, NULL); 318 336 return m; 319 337 }
Note: See TracChangeset
for help on using the changeset viewer.