devd: lower priority of action execution logging to info

Reviewed by:	asomers
This commit is contained in:
Andriy Gapon 2013-11-07 16:24:31 +00:00
parent 2e024bc22f
commit 1bb0777e41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257799

View File

@ -248,7 +248,7 @@ bool
action::do_action(config &c)
{
string s = c.expand_string(_cmd.c_str());
devdlog(LOG_NOTICE, "Executing '%s'\n", s.c_str());
devdlog(LOG_INFO, "Executing '%s'\n", s.c_str());
my_system(s.c_str());
return (true);
}