Skip to content

Commit

Permalink
Merge pull request #125 from sir-gon/develop
Browse files Browse the repository at this point in the history
[REFACTOR] logger export added.
  • Loading branch information
sir-gon authored Jul 21, 2023
2 parents 5e71580 + 9e19cb1 commit c49578f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/problem0000.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
* ////////////////////////////////////////////////////////////////////////////
*/

import logger from './logger';
import { logger as console } from './logger';

export function problem0000(): null {
const result = null;

logger.info(`result ${String(result)}`);
console.info(`result ${String(result)}`);

return result;
}
Expand Down

0 comments on commit c49578f

Please sign in to comment.