Collect the following ingredients:
- 500ml (~2c) Water
- 15g (½oz) Cinchona Bark, powdered
- 8g (¼c) Dried Lemongrass
- 55g (¼c) Citric Acid
- 1g (½tsp, ~20) Allspice Berries
- 1.3g (½tsp, ~45) Cubeb Peppers
- 300g (1½c) Cane sugar¹
- Zest and juice from:
import ( | |
log "github.com/sirupsen/logrus" | |
"github.com/jinzhu/gorm" | |
) | |
type GormLogger struct {} | |
func (*GormLogger) Print(v ...interface{}) { | |
if v[0] == "sql" { | |
log.WithFields(log.Fields{"module": "gorm", "type": "sql"}).Print(v[3]) |
Collect the following ingredients: