# Functions
Debug gets a driver and an optional logging function, and returns a new debugged-driver that prints all outgoing operations.
DebugWithContext gets a driver and a logging function, and returns a new debugged-driver that prints all outgoing operations with context.
NopTx returns a Tx with a no-op Commit / Rollback methods wrapping the provided Driver d.
# Structs
DebugDriver is a driver that logs all driver operations.
DebugTx is a transaction implementation that logs all transaction operations.
# Interfaces
Driver is the interface that wraps all necessary operations for ent clients.
ExecQuerier wraps the 2 database operations.
Tx wraps the Exec and Query operations in transaction.