2011-10-11 13:59:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2012-11-06 16:28:26 +00:00
|
|
|
# 2010-2012 Nico Schottelius (nico-cdist at schottelius.org)
|
2011-10-11 13:59:26 +00:00
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
2011-10-11 14:45:45 +00:00
|
|
|
import sys
|
2011-10-11 13:59:26 +00:00
|
|
|
|
2011-10-11 14:45:45 +00:00
|
|
|
class Context(object):
|
2011-10-11 14:04:09 +00:00
|
|
|
"""Hold information about current context"""
|
2011-10-11 13:59:26 +00:00
|
|
|
|
2013-08-18 22:52:15 +00:00
|
|
|
def __init__(self, target_host)
|
2011-10-11 13:59:26 +00:00
|
|
|
|
2011-10-11 14:05:32 +00:00
|
|
|
# Context logging
|
2011-10-11 14:26:01 +00:00
|
|
|
self.log = logging.getLogger(self.target_host)
|
2011-10-11 14:05:32 +00:00
|
|
|
self.log.addFilter(self)
|
2011-10-11 13:59:26 +00:00
|
|
|
|
2011-10-13 14:25:44 +00:00
|
|
|
|
2011-10-11 13:59:26 +00:00
|
|
|
def filter(self, record):
|
|
|
|
"""Add hostname to logs via logging Filter"""
|
|
|
|
|
2012-11-06 20:46:02 +00:00
|
|
|
record.msg = self.target_host + ": " + str(record.msg)
|
2011-10-11 13:59:26 +00:00
|
|
|
|
|
|
|
return True
|