Skip to content

Commit

Permalink
More console logging.
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan McQuen <[email protected]>
  • Loading branch information
ryanpcmcquen committed Jun 6, 2021
1 parent 17e47be commit 2222e72
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default class DropboxBackups extends Plugin {
params.code
);

console.log(accessTokenResponse);
console.log(JSON.stringify(accessTokenResponse));

const accessTokenResponseResult = accessTokenResponse?.result as accessTokenStore;
this.dropboxBackupsTokenStore = accessTokenResponseResult;
Expand All @@ -174,6 +174,8 @@ export default class DropboxBackups extends Plugin {
auth: this.dbxAuth,
});

console.log(JSON.stringify(this.dbx), JSON.stringify(this.dbxAuth));

await this.backup();
}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-dropbox-backups",
"name": "Dropbox Backups",
"version": "0.11.11",
"version": "0.11.12",
"minAppVersion": "0.9.12",
"description": "Automated backups to Dropbox for your enjoyment.",
"author": "ryanpcmcquen",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dropbox-backups",
"version": "0.11.11",
"version": "0.11.12",
"description": "Automated backups to Dropbox for your enjoyment.",
"main": "main.js",
"repository": "https://github.com/ryanpcmcquen/obsidian-dropbox-backups",
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.11.12": "0.9.12",
"0.11.11": "0.9.12",
"0.11.10": "0.9.12",
"0.11.9": "0.9.12",
Expand Down

0 comments on commit 2222e72

Please sign in to comment.