Skip to content
Extraits de code Groupes Projets
Valider b57ead72 rédigé par Matthieu Aubry's avatar Matthieu Aubry
Parcourir les fichiers

Merge pull request #94 from adesso-mobile/master

Checking if format is not nil before logging. Thanks for the PR!
parents 6bcf267b 241d4acf
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -116,7 +116,7 @@ class RegexFormat(object): ...@@ -116,7 +116,7 @@ class RegexFormat(object):
line = file.readline() line = file.readline()
file.seek(0) file.seek(0)
return self.check_format_line(line) return self.check_format_line(line)
def check_format_line(self, line): def check_format_line(self, line):
return re.match(self.regex, line) return re.match(self.regex, line)
...@@ -158,7 +158,7 @@ class IisFormat(RegexFormat): ...@@ -158,7 +158,7 @@ class IisFormat(RegexFormat):
regex = '\S+' regex = '\S+'
full_regex.append(regex) full_regex.append(regex)
self.regex = re.compile(' '.join(full_regex)) self.regex = re.compile(' '.join(full_regex))
start_pos = file.tell() start_pos = file.tell()
nextline = file.readline() nextline = file.readline()
file.seek(start_pos) file.seek(start_pos)
...@@ -875,7 +875,7 @@ class StaticResolver(object): ...@@ -875,7 +875,7 @@ class StaticResolver(object):
site = sites[0] site = sites[0]
except (IndexError, KeyError): except (IndexError, KeyError):
logging.debug('response for SitesManager.getSiteFromId: %s', str(sites)) logging.debug('response for SitesManager.getSiteFromId: %s', str(sites))
fatal_error( fatal_error(
"cannot get the main URL of this site: invalid site ID: %s" % site_id "cannot get the main URL of this site: invalid site ID: %s" % site_id
) )
...@@ -976,7 +976,7 @@ class DynamicResolver(object): ...@@ -976,7 +976,7 @@ class DynamicResolver(object):
return (site_id, self._cache['sites'][site_id]['main_url']) return (site_id, self._cache['sites'][site_id]['main_url'])
else: else:
return (None, None) return (None, None)
def _resolve_by_host(self, hit): def _resolve_by_host(self, hit):
""" """
Returns the site ID and site URL for a hit based on the hostname. Returns the site ID and site URL for a hit based on the hostname.
...@@ -1131,7 +1131,7 @@ class Recorder(object): ...@@ -1131,7 +1131,7 @@ class Recorder(object):
path = hit.path path = hit.path
if hit.query_string and not config.options.strip_query_string: if hit.query_string and not config.options.strip_query_string:
path += config.options.query_string_delimiter + hit.query_string path += config.options.query_string_delimiter + hit.query_string
# only prepend main url if it's a path # only prepend main url if it's a path
url = (main_url if path.startswith('/') else '') + path[:1024] url = (main_url if path.startswith('/') else '') + path[:1024]
...@@ -1237,7 +1237,7 @@ class Hit(object): ...@@ -1237,7 +1237,7 @@ class Hit(object):
for key, value in kwargs.iteritems(): for key, value in kwargs.iteritems():
setattr(self, key, value) setattr(self, key, value)
super(Hit, self).__init__() super(Hit, self).__init__()
if config.options.force_lowercase_path: if config.options.force_lowercase_path:
self.full_path = self.full_path.lower() self.full_path = self.full_path.lower()
...@@ -1333,14 +1333,14 @@ class Parser(object): ...@@ -1333,14 +1333,14 @@ class Parser(object):
Return the best matching format for this file, or None if none was found. Return the best matching format for this file, or None if none was found.
""" """
logging.debug('Detecting the log format') logging.debug('Detecting the log format')
format = None format = None
format_groups = 0 format_groups = 0
for name, candidate_format in FORMATS.iteritems(): for name, candidate_format in FORMATS.iteritems():
match = candidate_format.check_format(file) match = candidate_format.check_format(file)
if match: if match:
logging.debug('Format %s matches', name) logging.debug('Format %s matches', name)
# if there's more info in this match, use this format # if there's more info in this match, use this format
match_groups = len(match.groups()) match_groups = len(match.groups())
if format_groups < match_groups: if format_groups < match_groups:
...@@ -1348,8 +1348,10 @@ class Parser(object): ...@@ -1348,8 +1348,10 @@ class Parser(object):
format_groups = match_groups format_groups = match_groups
else: else:
logging.debug('Format %s does not match', name) logging.debug('Format %s does not match', name)
logging.debug('Format %s is the best match', format.name) if format:
logging.debug('Format %s is the best match', format.name)
return format return format
def parse(self, filename): def parse(self, filename):
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter