當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript log.warn方法代碼示例

本文整理匯總了TypeScript中utils/server/log.log.warn方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript log.warn方法的具體用法?TypeScript log.warn怎麽用?TypeScript log.warn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在utils/server/log.log的用法示例。


在下文中一共展示了log.warn方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: bakeGrapherUrls

export async function bakeGrapherUrls(urls: string[]) {
    const currentExports = await getGrapherExportsByUrl()
    const slugToId = await mapSlugsToIds()
    const toBake = []

    // Check that we need to bake this url, and don't already have an export
    for (const url of urls) {
        const current = currentExports.get(url)
        if (!current) {
            toBake.push(url)
            continue
        }

        const slug = _.last(parseUrl(url).pathname.split('/'))
        if (!slug) {
            log.warn(`Invalid chart url ${url}`)
            continue
        }

        const chartId = slugToId[slug]
        if (chartId === undefined) {
            log.warn(`Couldn't find chart with slug ${slug}`)
            continue
        }

        const rows = await db.query(`SELECT charts.config->>"$.version" AS version FROM charts WHERE charts.id=?`, [chartId])
        if (!rows.length) {
            log.warn(`Mysteriously missing chart by id ${chartId}`)
            continue
        }

        if (rows[0].version > current.version) {
            toBake.push(url)
        }
    }

    if (toBake.length > 0) {
        await bakeChartsToImages(toBake, `${BAKED_SITE_DIR}/exports`)
    }
}
開發者ID:OurWorldInData,項目名稱:owid-grapher,代碼行數:40,代碼來源:grapherUtil.ts


注:本文中的utils/server/log.log.warn方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。