Backend: Use common log prefix for places and their cells

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-07-15 08:31:36 +02:00
parent 1ad34478de
commit d6b848c0e9
2 changed files with 16 additions and 16 deletions

View File

@ -50,7 +50,7 @@ func (m *Cell) Find(api string) error {
db := Db()
if err := db.Preload("Place").First(m, "id = ?", m.ID).Error; err == nil {
log.Debugf("location: found %s (%+v)", m.ID, m)
log.Debugf("places: found cell id %s (%+v)", m.ID, m)
return nil
}
@ -59,7 +59,7 @@ func (m *Cell) Find(api string) error {
}
if err := l.QueryApi(api); err != nil {
log.Errorf("location: %s failed %s", m.ID, err)
log.Errorf("places: %s in cell id %s", err, m.ID)
return err
}
@ -81,13 +81,13 @@ func (m *Cell) Find(api string) error {
"count": 1,
})
log.Infof("place: added %s [%s]", place.ID, time.Since(start))
log.Infof("places: added place id %s [%s]", place.ID, time.Since(start))
m.Place = place
} else if found := FindPlace(l.PrefixedToken(), l.Label()); found != nil {
m.Place = found
} else {
log.Errorf("place: %s (add place %s for location %s)", err, place.ID, l.ID)
log.Errorf("places: %s in place id %s", err, place.ID)
m.Place = &UnknownPlace
}
}
@ -97,13 +97,13 @@ func (m *Cell) Find(api string) error {
m.CellCategory = l.Category()
if err := db.Create(m).Error; err == nil {
log.Debugf("location: added %s [%s]", m.ID, time.Since(start))
log.Debugf("places: added cell id %s [%s]", m.ID, time.Since(start))
return nil
} else if err := db.Preload("Place").First(m, "id = ?", m.ID).Error; err != nil {
log.Errorf("location: failed adding %s %s [%s]", m.ID, err.Error(), time.Since(start))
log.Errorf("places: %s in cell id %s [%s]", err, m.ID, time.Since(start))
return err
} else {
log.Debugf("location: found %s after second try [%s]", m.ID, time.Since(start))
log.Debugf("places: found cell id %s after trying again [%s]", m.ID, time.Since(start))
}
return nil
@ -117,12 +117,12 @@ func (m *Cell) Create() error {
// FirstOrCreateCell fetches an existing row, inserts a new row or nil in case of errors.
func FirstOrCreateCell(m *Cell) *Cell {
if m.ID == "" {
log.Errorf("location: id must not be empty")
log.Errorf("places: cell id must not be empty")
return nil
}
if m.PlaceID == "" {
log.Errorf("location: place_id must not be empty (first or create %s)", m.ID)
log.Errorf("places: place id must not be empty in %s (first or create)", m.ID)
return nil
}
@ -135,7 +135,7 @@ func FirstOrCreateCell(m *Cell) *Cell {
} else if err := Db().Where("id = ?", m.ID).First(&result).Error; err == nil {
return &result
} else {
log.Errorf("location: %s (first or create %s)", createErr, m.ID)
log.Errorf("places: %s in cell id %s (first or create)", createErr, m.ID)
}
return nil
@ -144,7 +144,7 @@ func FirstOrCreateCell(m *Cell) *Cell {
// Keywords returns search keywords for a location.
func (m *Cell) Keywords() (result []string) {
if m.Place == nil {
log.Errorf("location: place for %s is nil - you might have found a bug", m.ID)
log.Errorf("places: place for cell id %s is nil - you might have found a bug", m.ID)
return result
}

View File

@ -45,11 +45,11 @@ func FindPlace(id string, label string) *Place {
if label == "" {
if err := Db().First(place, "id = ?", id).Error; err != nil {
log.Debugf("place: %s (id %s)", err.Error(), id)
log.Debugf("places: %s (find place id %s)", err.Error(), id)
return nil
}
} else if err := Db().First(place, "id = ? OR place_label = ?", id, label).Error; err != nil {
log.Debugf("place: %s (id %s, label %s)", err.Error(), id, txt.Quote(label))
log.Debugf("places: %s (find place id %s, label %s)", err.Error(), id, txt.Quote(label))
return nil
}
@ -73,12 +73,12 @@ func (m *Place) Create() error {
// FirstOrCreatePlace fetches an existing row, inserts a new row or nil in case of errors.
func FirstOrCreatePlace(m *Place) *Place {
if m.ID == "" {
log.Errorf("place: id must not be empty (first or create)")
log.Errorf("places: place id must not be empty (first or create)")
return nil
}
if m.PlaceLabel == "" {
log.Errorf("place: label must not be empty (first or create %s)", m.ID)
log.Errorf("places: label must not be empty in %s (first or create)", m.ID)
return nil
}
@ -91,7 +91,7 @@ func FirstOrCreatePlace(m *Place) *Place {
} else if err := Db().Where("id = ? OR place_label = ?", m.ID, m.PlaceLabel).First(&result).Error; err == nil {
return &result
} else {
log.Errorf("place: %s (first or create %s)", createErr, m.ID)
log.Errorf("places: %s in %s (first or create)", createErr, m.ID)
}
return nil