From cfe9fb0f47247c3552c2127d1aead33d0719f9f3 Mon Sep 17 00:00:00 2001 From: Matthew Pendrey Date: Fri, 20 Jun 2025 21:51:54 +0100 Subject: [PATCH 01/12] log --- offchainreporting2plus/internal/managed/track_config.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/offchainreporting2plus/internal/managed/track_config.go b/offchainreporting2plus/internal/managed/track_config.go index 6e667d98..91feda90 100644 --- a/offchainreporting2plus/internal/managed/track_config.go +++ b/offchainreporting2plus/internal/managed/track_config.go @@ -91,6 +91,10 @@ func (state *trackConfigState) checkLatestConfigDetails() ( ctx, cancel := context.WithTimeout(state.ctx, state.localConfig.ContractConfigLoadTimeout) defer cancel() + state.logger.Info("Here we are again", commontypes.LogFields{ + "error": "hhj", + }) + blockheight, err := state.configTracker.LatestBlockHeight(ctx) if err != nil { state.logger.ErrorIfNotCanceled("TrackConfig: error during LatestBlockHeight()", ctx, commontypes.LogFields{ @@ -107,7 +111,7 @@ func (state *trackConfigState) checkLatestConfigDetails() ( return nil, false } if latestConfigDigest == (types.ConfigDigest{}) { - state.logger.Warn("TrackConfig: LatestConfigDetails() returned a zero configDigest. Looks like the contract has not been configured", commontypes.LogFields{ + state.logger.Warn("TrackConfig: LatestConfigDetails() returned a zero configDigest, oh crap. Looks like the contract has not been configured", commontypes.LogFields{ "configDigest": latestConfigDigest, }) return nil, false From a9971a12e31c48bb39a76f63247591fda4535e81 Mon Sep 17 00:00:00 2001 From: Matthew Pendrey Date: Fri, 20 Jun 2025 22:34:31 +0100 Subject: [PATCH 02/12] log --- .idea/workspace.xml | 68 +++++++++++++++++++ .../internal/managed/track_config.go | 2 +- 2 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 .idea/workspace.xml diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..7514f546 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + \ No newline at end of file diff --git a/offchainreporting/internal/managed/track_config.go b/offchainreporting/internal/managed/track_config.go index eae8948d..07edf5f1 100644 --- a/offchainreporting/internal/managed/track_config.go +++ b/offchainreporting/internal/managed/track_config.go @@ -132,7 +132,7 @@ func (state *trackConfigState) checkLatestConfigDetails() ( return nil, false } if latestConfigDigest == (types.ConfigDigest{}) { - state.logger.Warn("TrackConfig: LatestConfigDetails() returned a zero configDigest. Looks like the contract has not been configured", commontypes.LogFields{ + state.logger.Warn("TrackConfig: LatestConfigDetails() returned a zero configDigest, oh poo. Looks like the contract has not been configured", commontypes.LogFields{ "configDigest": latestConfigDigest, }) return nil, false From 18b48d7d18f5887e6184836e601f245933d7e098 Mon Sep 17 00:00:00 2001 From: Matthew Pendrey Date: Sat, 21 Jun 2025 11:44:12 +0100 Subject: [PATCH 03/12] log --- .idea/workspace.xml | 4 +++- offchainreporting2plus/internal/managed/track_config.go | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 7514f546..9090b9a8 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,7 +4,9 @@