We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before calling the parser, the JSON received is printed if log level is DEBUG:
logger.debug('Data received: %s', post_data) message = compose(self.template_path, parse(post_data))
and is printed too the very moment we call the parser:
def parse(json_str): logger.debug('received: %s', json_str) [...]
So second time is not necessary.
The text was updated successfully, but these errors were encountered:
#23 Deleted second and redundant debug message line in parser.py
dbe3fee
#23 Updated changelog
37f123b
Merge pull request #24 from idealista/bugs/debug_message_duplicated
d4cebcd
jnogol
No branches or pull requests
Before calling the parser, the JSON received is printed if log level is DEBUG:
and is printed too the very moment we call the parser:
So second time is not necessary.
The text was updated successfully, but these errors were encountered: