Skip to content

Commit e8dd1f8

Browse files
committed
Add log
1 parent 28e5d2e commit e8dd1f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/pages/[username]/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ export const getStaticProps: GetStaticProps<
2323
UserPageProps,
2424
{ username: string }
2525
> = async (props) => {
26-
// console.debug('Starting getStaticProps in /[username]')
26+
console.log('Starting getStaticProps in /[username]')
2727
const {username} = props.params!
2828

2929
const user = await getUserForStaticProps(db, username)
3030

31-
// console.log(user)
31+
console.log('getStaticProps', {user})
3232

3333
if (!user) {
3434
return {

0 commit comments

Comments
 (0)