Skip to content

Commit

Permalink
fix stdout debug message typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones-plip committed Jan 19, 2024
1 parent 4bf53fd commit be44cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/cht-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ export class ChtApi {

if (NODE_ENV !== 'production') {
if (!sessionToken) {
console.log("failed to login to sever " + sessionUrl);
console.log("failed to login to " + sessionUrl);
} else {
console.log("successfully logged in to sever " + sessionUrl);
console.log("successfully logged in to " + sessionUrl);
}
}
return {
Expand Down

0 comments on commit be44cff

Please sign in to comment.