How to use the info function from fancy-log

Find comprehensive JavaScript fancy-log.info code examples handpicked from public code repositorys.

35
36
37
38
39
40
41
42
43
44
45
      public: serveOptions.root,
    })
  );


  server.listen(serveOptions.port, serveOptions.networkAccess ? "0.0.0.0" : undefined, () => {
    log.info(`Available at http://localhost:${serveOptions.port}`);
    open(`http://localhost:${serveOptions.port}`);
  });
}

fork icon0
star icon10
watch icon2

+ 15 other calls in file

71
72
73
74
75
76
77
78
79
await isCleanGuard(git);
log.info("Проверка репозитория заверешена");

const fromBranch = await getBranch(git, options.from);
const toBranch = await getBranch(git, options.to);
log.info("Проверка веток заверешена");

await git.checkout(fromBranch.name);
log.info(`Перешли на ветку ${fromBranch.name}`);
fork icon0
star icon0
watch icon1

+ 64 other calls in file