X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=mood.c;h=0d11ea13cdd0fe5f59ff23cf5e989972f5580e28;hb=7fc9a44cb0205121b7ece3a3cecd66e712a31981;hp=d29b930a0be1e0e8c64024579ac3342102eaf941;hpb=743305a1abc06d69f07d6dcfcee3f0c590928fbf;p=paraslash.git diff --git a/mood.c b/mood.c index d29b930a..0d11ea13 100644 --- a/mood.c +++ b/mood.c @@ -840,13 +840,13 @@ int mood_update_audio_file(const struct osl_row *aft_row, struct afs_info *old_a score += compute_num_played_score(&afsi); score += compute_last_played_score(&afsi); score /= 3; - PARA_NOTICE_LOG("score: %li\n", score); + PARA_DEBUG_LOG("score: %li\n", score); percent = (score + 100) / 3; if (percent > 100) percent = 100; else if (percent < 0) percent = 0; - PARA_NOTICE_LOG("re-inserting at %lu%%\n", percent); + PARA_DEBUG_LOG("re-inserting at %lu%%\n", percent); return score_update(aft_row, percent); }