Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 794B

123456789101112131415161718192021222324252627282930313233
  1. WDIO Logger Utility
  2. ===================
  3. > A helper utility for logging of WebdriverIO packages
  4. This package is used across all WebdriverIO packages to log information using the [`loglevel`](https://www.npmjs.com/package/loglevel) package. It can also be used for any other arbitrary Node.js project.
  5. ## Install
  6. To install the package just call
  7. ```sh
  8. $ npm install @wdio/logger
  9. ```
  10. or when adding it to a WebdriverIO subpackage:
  11. ```sh
  12. $ lerna add @wdio/logger --scope <subpackage>
  13. ```
  14. ## Usage
  15. The package exposes a logger function that you can use to register an instance for your scoped package:
  16. ```js
  17. import logger from '@wdio/logger'
  18. const log = logger('myPackage')
  19. log.info('some logs')
  20. ```
  21. For more info see [`loglevel`](https://www.npmjs.com/package/loglevel) package on NPM.