Skip to content

Commit b0658dc

Browse files
committed
SK-1959 Fix README after rebase
1 parent 8851d28 commit b0658dc

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,9 @@ static class DemoTokenProvider implements TokenProvider {
327327
String filePath = "<YOUR_CREDENTIALS_FILE_HERE>";
328328
res = Token.generateBearerToken(filePath);
329329
} catch (SkyflowException e) {
330-
System.out.println("Error occurred: ");
331-
System.out.println(e);
330+
e.printStackTrace();
332331
}
332+
return res.getAccessToken();
333333
}
334334
}
335335
```
@@ -642,7 +642,6 @@ public class InsertSchema {
642642
}
643643
}
644644
}
645-
646645
```
647646

648647
Insert
@@ -1267,7 +1266,7 @@ There are four accepted values for RedactionType:
12671266
* `REDACTED`
12681267
* `DEFAULT`
12691268

1270-
- `returnTokens` set to `false`
1269+
## Update
12711270

12721271
To update data in your vault, use the `update` method. The `UpdateRequest` class is used to create an update request,
12731272
where you specify parameters such as the table name, data (as a map of key value pairs), tokens, returnTokens, and
@@ -1695,8 +1694,7 @@ public class ChangeLogLevel {
16951694
16961695
Currently, the following 5 log levels are supported:
16971696
1698-
When `LogLevel.INFO` is passed, INFO logs for every event that has occurred during the SDK flow execution will be
1699-
printed along with WARN and ERROR logs
1697+
- `DEBUG`:
17001698
17011699
When `LogLevel.DEBUG` is passed, all level of logs will be printed(DEBUG, INFO, WARN, ERROR)
17021700

0 commit comments

Comments
 (0)