Skip to content

Commit

Permalink
Remove console log and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Jan 17, 2023
1 parent 431c26c commit 6c10711
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This changelog covers all three packages, as they are (for now) updated as a whole

## UNRELEASED

- Let users register using e-mail address, improve sign-up UX #238

## v0.34.10

- Don't use WebSocket in Node context #280
Expand Down
1 change: 0 additions & 1 deletion lib/src/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {

/** Returns a JSON-AD resource of an Authentication */
export async function createAuthentication(subject: string, agent: Agent) {
console.log('create authentication', subject);
const timestamp = getTimestampNow();

if (!agent.subject) {
Expand Down
1 change: 0 additions & 1 deletion lib/src/websockets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export function startWebsocket(url: string, store: Store): WebSocket {
}

function handleOpen(store: Store, client: WebSocket) {
console.log('open client', client);
// Make sure user is authenticated before sending any messages
authenticate(client, store).then(() => {
// Subscribe to all existing messages
Expand Down

0 comments on commit 6c10711

Please sign in to comment.