We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb63333 commit 5de712fCopy full SHA for 5de712f
README.md
@@ -43,7 +43,10 @@ import "github.com/dropbox/dropbox-sdk-go-unofficial/dropbox"
43
import "github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/users"
44
45
func main() {
46
- config := dropbox.Config{Token: token, Verbose: true} // second arg enables verbose logging in the SDK
+ config := dropbox.Config{
47
+ Token: token,
48
+ LogLevel: dropbox.LogInfo // if needed, set the desired logging level. Default is off
49
+ }
50
dbx := users.New(config)
51
// start making API calls
52
}
0 commit comments