convert warning to debug output

This commit is contained in:
Enno Rehling 2017-06-11 14:47:33 +02:00
parent 025a04a5e9
commit 2c9c4c23f0
1 changed files with 1 additions and 1 deletions

View File

@ -3014,7 +3014,7 @@ int cast_spell(struct castorder *co)
fun = get_spellcast(sp->sname);
if (!fun) {
log_warning("no spell function for %s, try callback", sp->sname);
log_debug("no spell function for %s, try callback", sp->sname);
return callbacks.cast_spell(co, fname);
}
return fun(co);