From 2c9c4c23f0dcb628ba57c11ff463b1cfc42fa7a0 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 11 Jun 2017 14:47:33 +0200 Subject: [PATCH] convert warning to debug output --- src/magic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/magic.c b/src/magic.c index 81a797e1c..883bddffa 100644 --- a/src/magic.c +++ b/src/magic.c @@ -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);