Skip to content
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

feat(app): #70 Add logging #252

Closed
wants to merge 5 commits into from
Closed

feat(app): #70 Add logging #252

wants to merge 5 commits into from

Conversation

AlexAxthelm
Copy link
Collaborator

@AlexAxthelm AlexAxthelm commented Feb 28, 2024

Add log messages to web_tool_scripts which will help in diagnosing issues when running Docker image on remote machines (CTM Platform allows for log download)

I was pretty generous logging at INFO (rather than DEBUG or TRACE) level, so the output is a lot busier than previously, but it give a very clear picture of where in the process it is at any given moment (until it falls into the create_interactive_report long-running black hole).

Tested with 2022Q2 Data.

Closes #70
Relates to RMI-PACTA/workflow.pacta#47

Copy link

github-actions bot commented Feb 28, 2024

Docker image from this PR (0513395) created

docker pull ghcr.io/rmi-pacta/workflow.transition.monitor:pr252

@AlexAxthelm AlexAxthelm changed the title feat(app): #70 Add logging to web_tool_script_1.R feat(app): #70 Add logging Feb 28, 2024
@AlexAxthelm AlexAxthelm marked this pull request as ready for review February 28, 2024 14:32
@cjyetman
Copy link
Member

cjyetman commented Feb 28, 2024

I’m very much not in favor of this. From my perspective, this style of logging causes more trouble than added value.

log(“running foo()”)
foo()

log(“running bar()”)
bar()

log(“running baz()”)
baz()

For one, it nearly doubles the lines of code in each script, which makes it harder to read, harder to quickly understand, and therefore harder to maintain. It also increases the likelihood of creating tech debt, by either forgetting to update log messages when code changes are made, or vice versa.

I also find it more difficult to figure out a problem when I’m looking at a massive flood of log messages versus targeted warnings and errors. A few years ago I actually put in a significant effort into reducing the unnecessary output for precisely this purpose, and in my opinion it has been very successful and very helpful.

This is in addition to the existing two modes of logging that we already have in place, one logging stdout to a file and one doing extra, special logging to a specific log file. Those have been instrumental in solving problems in the past, but they are specifically targeted so that we only get messages when it matters, not a flood.

I’ll make you a deal: if there is one single problem in this upcoming COP that I can’t easily solve with the existing setup we have to deal with problems (excluding stuff Constructiva does with the portfolio files before our code even touches it), I’ll allow you to log every single line of code in this repo.

@AlexAxthelm AlexAxthelm marked this pull request as draft February 29, 2024 18:25
@AlexAxthelm
Copy link
Collaborator Author

Moving this back to draft.

I hear what you're saying about not wanting to sift through log messages, but the fact remains that logs are our primary (and often only) mechanism for diagnosing problems remotely. Please note that every current and planned production environment is running non-interactively meaning that logs are the only direct information we have about their state. Importantly, they are emitted as the code in situ, and not in an artificial recreation (in silico). Regardless of how much we attempt to work in a reproducible environment, having the diagnostics from the actual event is always preferable to not having them.

That said, sifting through log messages shouldn't be a challenge, as most terminals (or tmux) have robust scrollback options that allow for searching on standardized string like WARN or ERROR.

Having log messages about the progress of a process is comparable to having line numbers in a code editor. It allows you to quickly diagnose what parts of the process ran successfully and what did not, so that debugging efforts can start from an informed position.

Along that line, the messages to stdout that are emitted during the normal processing of these scripts is practically non-existent (just a line letting us know which script is running, and build version if there is one). This means that during local development, there are extended periods with no indicators of progress. The changes in this PR supplement the current messages to stdout.

I don't see any calls to other logging mechanisms other than CLI in these scripts, so I'm assuming that those are handled in the pacta. packages? I generally think that it's not a good idea to have multiple logging systems (which is why I've been moving us towards logger when I touch logs), since having a standard in both in invocation and in output format makes life easier all around. I'll also point out that one of things I really like about logger is that you can (optionally) redirect logs wherever they need to go, such as dumping them to file in addition to stdout, or dumping the full logs somewhere, and emitting INFO and up to stdout. It's very flexible in that regard.


Overall, this PR is a stopgap/workaround to the problem that you identified. A fair number of these logs probably shouldn't be here. They should be in the functions that are being called. They would be much easier to maintain there, and would almost certainly be able to provide much more useful diagnostic information. But given the scope of adding good logging to all of our packages, this is what will have to do in the meantime.

Copy link

Docker build status

Commit time Git sha Project code Holdings date Language Peer group Report Image
2024-03-13T14:34:17Z 28838fb GENERAL 2022Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2022q4_general:20240313T143456Z
2024-03-13T14:34:17Z 28838fb GENERAL 2023Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_general:20240313T143457Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb ghcr.io/rmi-pacta/workflow.transition.monitor:pr252
History
Commit time Git sha Project code Holdings date Language Peer group Report Image
2024-03-13T14:34:17Z 28838fb GENERAL 2022Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2022q4_general:20240313T143456Z
2024-03-13T14:34:17Z 28838fb GENERAL 2023Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_general:20240313T143457Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 DE researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 EN researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR asset_manager Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR civil_society Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR other Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR pension_fund Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR politician Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb PA2024CH 2023Q4 FR researcher Report transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z
2024-03-13T14:34:17Z 28838fb ghcr.io/rmi-pacta/workflow.transition.monitor:pr252
History JSON`[{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"GENERAL","holdings_date":"2022Q4","language":"EN","peer_group":"other","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2022q4_general-20240313T143456Z/EN/other/1/working_dir/50_Outputs/rmi_pacta_2022q4_general/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2022q4_general:20240313T143456Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"GENERAL","holdings_date":"2023Q4","language":"EN","peer_group":"other","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_general-20240313T143457Z/EN/other/1/working_dir/50_Outputs/rmi_pacta_2023q4_general/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_general:20240313T143457Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"asset_manager","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/asset_manager/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"civil_society","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/civil_society/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"other","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/other/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"pension_fund","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/pension_fund/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"politician","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/politician/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"DE","peer_group":"researcher","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/DE/researcher/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"asset_manager","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/asset_manager/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"civil_society","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/civil_society/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"other","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/other/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"pension_fund","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/pension_fund/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"politician","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/politician/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"EN","peer_group":"researcher","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/EN/researcher/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"asset_manager","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/asset_manager/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"civil_society","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/civil_society/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"other","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/other/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"pension_fund","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/pension_fund/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"politician","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/politician/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","project_code":"PA2024CH","holdings_date":"2023Q4","language":"FR","peer_group":"researcher","report":"[Report](https://pactadatadev.blob.core.windows.net/ghactions-workflow-transition-monitor-results-reports/rmi_pacta_2023q4_pa2024ch-20240313T143452Z/FR/researcher/1/working_dir/50_Outputs/rmi_pacta_2023q4_pa2024ch/report/index.html)","image":"`transitionmonitordockerregistry.azurecr.io/rmi_pacta_2023q4_pa2024ch:20240313T143452Z`"},{"commit_time":"2024-03-13T14:34:17Z","git_sha":"28838fbc27dde948afcff6dece3d5a8d2fb1b59b","image":"ghcr.io/rmi-pacta/workflow.transition.monitor:pr252"}]`

@AlexAxthelm
Copy link
Collaborator Author

Closing this one out since it's not likely to ever be merged. We can revive the branch if needed.

@AlexAxthelm AlexAxthelm closed this Apr 9, 2024
@AlexAxthelm AlexAxthelm deleted the feat/70-add-logging branch April 9, 2024 15:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

add some basic logging
2 participants