-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Add raw logging #191
base: main
Are you sure you want to change the base?
Add raw logging #191
Conversation
c1a055e
to
cb6250e
Compare
tests/pylintrc
Outdated
@@ -454,7 +454,7 @@ indent-after-paren=4 | |||
indent-string=' ' | |||
|
|||
# Maximum number of characters on a single line. | |||
max-line-length=100 | |||
max-line-length=120 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? This change can be easily edited to conform to 100 chars.
source/modules/runners/run.py
Outdated
sequence_records = db_writer.start_sequence_dict(host_list, | ||
self.setup_hooks, options, | ||
self.start_ts_raw, | ||
with open(f"{self.log_path}.raw", "a", encoding="utf-8") as raw_log: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to have a single point for logging and message redistribution. Is it really required at this moment? I mean, we can merge it but I will change this once I (finally? hopefully next week?) get back to ansible-deployer development.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for me it was very helpful last days, the whole part of code is probably something we have to fully restructure to run as ansible callback plugin, so it will be a bigger change
38b8146
to
f2ae113
Compare
4cdc87c
to
c1f7847
Compare
No description provided.