The are the logs that I get from starting a node on testnet with tx logging (not from scratch):
2022-03-21T09:41:49.314802172Z: INFO: Starting up concordium_node version 3.0.1!
2022-03-21T09:41:49.314811930Z: INFO: Application data directory: /mnt/data
2022-03-21T09:41:49.314813022Z: INFO: Application config directory: /mnt/config
2022-03-21T09:41:49.314813774Z: INFO: Network: enabled
2022-03-21T09:41:49.314814435Z: INFO: Log level: info
2022-03-21T09:41:49.314816058Z: INFO: Enabling prometheus server
2022-03-21T09:41:49.314964425Z: INFO: My Node ID is ada81f970cf9b6c4
2022-03-21T09:41:49.314968223Z: INFO: Listening on [192.168.64.2:8888](http://192.168.64.2:8888)
2022-03-21T09:41:49.316837819Z: INFO: Starting consensus layer
2022-03-21T09:41:49.316841736Z: INFO: Starting up the consensus thread
2022-03-21T09:41:49.317166082Z: INFO: Starting up the consensus layer
2022-03-21T09:41:49.513502994Z: INFO: Runner: Starting new chain with genesis block b6078154d6717e909ce0da4a45a25151b592824f31624b755900a74429e3073d at absolute height 0
2022-03-21T09:41:49.527171716Z: INFO: GlobalState: No relevant tables found in transaction logging database. Creating them.
2022-03-21T09:41:58.876920330Z: INFO: Runner: Starting new chain with genesis block 532c57beea5184eb2b67a55b4ceb51308a039d76b4d238ae0a21c6db2e59a235 at absolute height 1150347
2022-03-21T09:41:58.887411279Z: INFO: GlobalState: Using existing PostgreSQL tables for transaction logging.
2022-03-21T09:42:08.942359961Z: INFO: Runner: Starting new chain with genesis block 396e1ac6b3cd4aef76fbd463275f270dbacf70294d3e33eee8e28cfb51aa1625 at absolute height 1788274
2022-03-21T09:42:08.952451474Z: INFO: GlobalState: Using existing PostgreSQL tables for transaction logging.
2022-03-21T09:42:23.642860336Z: INFO: Consensus layer started
2022-03-21T09:42:23.642872699Z: INFO: Starting RPC server
2022-03-21T09:42:23.642882117Z: INFO: Starting out of band catch-up
2022-03-21T09:42:23.643006971Z: INFO: Runner: Transaction purging thread started.
2022-03-21T09:42:23.644344732Z: INFO: Completed out of band catch-up
2022-03-21T09:42:23.644457202Z: INFO: Starting the P2P layer
2022-03-21T09:42:23.644460719Z: INFO: Attempting to bootstrap
2022-03-21T09:42:23.664844279Z: INFO: Using bootstrapper [18.194.217.131:8888](http://18.194.217.131:8888)
2022-03-21T09:42:23.664849850Z: INFO: Using bootstrapper [3.69.226.167:8888](http://3.69.226.167:8888)
...
I’m fairly sure the node would crash if it was set up to do tx logging but couldn’t access the DB. So it seems likely that it isn’t actually enabled.
Did you include the changes to docker-compose.yaml from the PR in your setup? If not, the correct variables will not be passed to the node.
You can inspect the container with docker inspect <container>
to see which exact environment variables are passed.