(dbName string, logConfig *base.DbLogConfig)
| 228 | } |
| 229 | |
| 230 | func (h *handler) addDatabaseLogContext(dbName string, logConfig *base.DbLogConfig) { |
| 231 | if dbName != "" { |
| 232 | h.rqCtx = base.DatabaseLogCtx(h.ctx(), dbName, logConfig) |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | func (h *handler) addCollectionLogContext(scopeName, collectionName string) { |
| 237 | if scopeName != "" && collectionName != "" { |
no test coverage detected