Skip to content

Commit

Permalink
Comment out a debugging logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
grutz committed Mar 24, 2014
1 parent 78e8311 commit 66cf0d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/skaldship/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def create_hostfilter_query(fdata=[(None, None), False], q=None, dbname=None):
user_id = db(db.auth_user.username.lower() == f_value).select(cache=(cache.ram,120)).first()
q = q & (db.t_hosts.f_engineer == user_id)
elif f_type == "assetgroup":
logger.debug("assetgroup filter: %s" % (f_value))
#logger.debug("assetgroup filter: %s" % (f_value))
if "%" in f_value:
q &= (db.t_hosts.f_asset_group.contains(f_value))
else:
Expand Down

0 comments on commit 66cf0d2

Please sign in to comment.