Skip to content

Commit

Permalink
Added test error when adding trace log to display trace log info to s…
Browse files Browse the repository at this point in the history
…creen.
  • Loading branch information
nero120 committed Apr 1, 2022
1 parent 52d6219 commit 73e5b47
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export class AndroidStoreService extends StoreService {

protected addTraceLog(log: TraceLogItem): ng.IPromise<void> {
return this.$q<void>((resolve, reject) => {
throw new Error(`addTraceLog: ${JSON.stringify(log ?? {})}`);
this.db.executeSql(
`INSERT INTO ${Table.TraceLog} (
${TraceLogColumn.Timestamp},
Expand Down

0 comments on commit 73e5b47

Please sign in to comment.