Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
monicasarbu committed Jul 6, 2014
1 parent e4f8efc commit de814ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import (
"fmt"
"io/ioutil"
"log"
"os"
"runtime"
"runtime/pprof"
"strconv"
"strings"
"time"
"os"
"runtime/pprof"

"github.com/BurntSushi/toml"
"github.com/akrennmair/gopcap"
Expand Down Expand Up @@ -189,7 +189,7 @@ func debugMemStats() {
var m runtime.MemStats
runtime.ReadMemStats(&m)
DEBUG("mem", "Memory stats: In use: %d Total (even if freed): %d System: %d",
m.Alloc, m.TotalAlloc, m.Sys)
m.Alloc, m.TotalAlloc, m.Sys)
}

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pgsql.go
Original file line number Diff line number Diff line change
Expand Up @@ -656,9 +656,9 @@ func receivedPgsqlRequest(msg *PgsqlMessage) {
}

trans.Pgsql = bson.M{
"query": query,
"query": query,
"query.raw": query,
"method": getQueryMethod(query),
"method": getQueryMethod(query),
}

trans.Request_raw = query
Expand Down

0 comments on commit de814ce

Please sign in to comment.