diff --git a/sea.go b/sea.go index 660f20c..2b0f209 100644 --- a/sea.go +++ b/sea.go @@ -27,10 +27,11 @@ type Sea struct { debug bool } -// Connect to database and connect to weed +// Окрывает БД sea, соединяется с weed. +// Если options = true, то будут выводиться отладочные сообщения func Connect(options ...bool) (*Sea, error) { debug := false - if len(options) > 0 && options[0] == true { + if len(options) > 0 && options[0] { debug = true }