File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ public static void main(String[] args) {
33
33
// If the "RememberME" option is set to true in your first login you can access TileDB-Cloud without the need
34
34
// to pass any credentials from now on. Just create the client as follows:
35
35
// TileDBClient tileDBClient = new TileDBClient();
36
+ tileDBClient .setDebugging (true );
36
37
37
38
38
39
// Uncomment to run whichever example you want
Original file line number Diff line number Diff line change @@ -119,6 +119,14 @@ private static boolean loadCloudJSONFileFromHome() throws IOException {
119
119
return true ;
120
120
}
121
121
122
+ /**
123
+ * Enables debugging logs
124
+ * @param flag True to enable
125
+ */
126
+ public void setDebugging (boolean flag ){
127
+ this .apiClient .setDebugging (flag );
128
+ }
129
+
122
130
/**
123
131
* This method throws a warning if there is no login information in the json file or passed
124
132
* as a parameter. If the login information has data it calls another helper method to save it.
You can’t perform that action at this time.
0 commit comments