Skip to content

Commit

Permalink
Move log to core
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjbradshaw committed Sep 11, 2024
1 parent 1ab3e34 commit f1a5c77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
setLogSettings,
vInfo,
warn,
} from '../common/log'
} from './log'
// import modal from '../common/modal'
import setMode, { getModeData, getModeLabel } from '../common/mode'
import { once } from '../common/utils'
Expand Down
2 changes: 1 addition & 1 deletion packages/common/log.js → packages/core/log.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import formatAdvise from './format-advise'
import formatAdvise from '../common/format-advise'

const msgId = '[iframe-resizer]'

Expand Down
2 changes: 1 addition & 1 deletion packages/core/values/defaults.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { advise } from '../../common/log'
import { advise } from '../log'
import settings from './settings'

const onReadyDeprecated = (messageData) => {
Expand Down

0 comments on commit f1a5c77

Please sign in to comment.