Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ionic-logger
Advanced tools
Ionic 5 plugin providing a logger service.
Make sure you have Ionic and Angular installed.
npm install --save ionic-logger
Check you peer-dependencies warnings after npm install
to make sure you are using a version in accordance to your Ionic version.
import { IonicLoggerModule, Logger } from 'ionic-logger';
@NgModule({
imports: [
IonicLoggerModule.forRoot({
docDir: 'MyApp',
logDir: 'log'
})
],
providers: [
Logger
]
})
export class AppModule {}
Options | Type | Description |
---|---|---|
docDir | string | Document directory. Defaults to 'ionic-logger' |
logDir | string | Log directory inside docDir. Defaults to 'log' |
logDayFormat | string | Day format. Defaults to 'YYYY-MM-DD' |
logHourFormat | string | Hour format. Defaults to 'HH:mm:ss:SSS' |
debug | boolean | Boolean to enable debug mode. Defaults to false |
import { Platform } from 'ionic-angular';
import { Logger } from 'ionic-logger';
import { FileSystemService } from './file-system.service'; // your own service or model that implements ionic-logger FileSystem interface
...
constructor(
private logger: Logger,
private platform: Platform
) {
this.platform.ready().then(() => {
...
this.logger.init(fileSystemService).then((status) => {
this.logger.debug('[Logger] init: ' + status);
})
}
}
FAQs
Ionic 5 plugin providing a logger service.
The npm package ionic-logger receives a total of 0 weekly downloads. As such, ionic-logger popularity was classified as not popular.
We found that ionic-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.