mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge pull request #37 from benbjohnson/import-error
Add import error string
This commit is contained in:
commit
9bbf9f1955
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ func (h *Handler) handlePostImport(w http.ResponseWriter, r *http.Request) {
|
|||
// Import into fragment.
|
||||
err = f.Import(req.GetBitmapIDs(), req.GetProfileIDs())
|
||||
if err != nil {
|
||||
h.logger().Printf("import error: db=%s, frame=%s, slice=%s, bits=%d", db, frame, slice, len(req.GetProfileIDs()))
|
||||
h.logger().Printf("import error: db=%s, frame=%s, slice=%s, bits=%d, err=%s", db, frame, slice, len(req.GetProfileIDs()), err)
|
||||
}
|
||||
|
||||
// Marshal response object.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue