Skip to content

Commit

Permalink
chore: new year new copyright statements
Browse files Browse the repository at this point in the history
  • Loading branch information
monrax committed Feb 27, 2024
1 parent 29b4adc commit f504e2b
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ heroku config:set USAGE_LOGGERS_DISABLE=true
```

---
<small>&copy; 2016-2023 <a href="https://resurface.io">Graylog, Inc.</a></small>
<small>&copy; 2016-2024 <a href="https://resurface.io">Graylog, Inc.</a></small>
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright (c) 2016-2023 Graylog, Inc.
Copyright (c) 2016-2024 Graylog, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ but logging rules are easily customized to meet the needs of any application.
<a href="https://resurface.io/rules.html">Logging rules documentation</a>

---
<small>&copy; 2016-2023 <a href="https://resurface.io">Graylog, Inc.</a></small>
<small>&copy; 2016-2024 <a href="https://resurface.io">Graylog, Inc.</a></small>
2 changes: 1 addition & 1 deletion lib/all.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

module.exports = {
BaseLogger: require('./base_logger'),
Expand Down
2 changes: 1 addition & 1 deletion lib/base_logger.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const os = require('os');
const zlib = require('zlib');
Expand Down
2 changes: 1 addition & 1 deletion lib/http_logger.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable guard-for-in */
/* eslint-disable no-restricted-syntax */
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const HttpRules = require('./http_rules');

Expand Down
2 changes: 1 addition & 1 deletion lib/http_message.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-restricted-syntax */
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const util = require('util');

Expand Down
2 changes: 1 addition & 1 deletion lib/http_request_impl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

/**
* Mock request implementation.
Expand Down
2 changes: 1 addition & 1 deletion lib/http_response_impl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

/**
* Mock response implementation.
Expand Down
2 changes: 1 addition & 1 deletion lib/http_rule.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

/**
* Parsed rule for HTTP logger.
Expand Down
2 changes: 1 addition & 1 deletion lib/http_rules.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const fs = require('fs');
const HttpRule = require('./http_rule');
Expand Down
2 changes: 1 addition & 1 deletion lib/logged_response_wrapper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

class WriterWrapper {
constructor(response, limit = 1024 * 1024) {
Expand Down
2 changes: 1 addition & 1 deletion lib/middleware/http_logger_for_express.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const HttpLogger = require('../http_logger');
const HttpMessage = require('../http_message');
Expand Down
2 changes: 1 addition & 1 deletion lib/middleware/http_logger_for_koa.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const HttpLogger = require('../http_logger');
const HttpMessage = require('../http_message');
Expand Down
2 changes: 1 addition & 1 deletion lib/usage_loggers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const BRICKED = process.env.USAGE_LOGGERS_DISABLE === 'true';

Expand Down
2 changes: 1 addition & 1 deletion test/base_logger_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-as-promised'));
Expand Down
2 changes: 1 addition & 1 deletion test/helper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const resurfaceio = require('../lib/all');

Expand Down
2 changes: 1 addition & 1 deletion test/helper_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');

Expand Down
2 changes: 1 addition & 1 deletion test/http_logger_rules_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');

Expand Down
2 changes: 1 addition & 1 deletion test/http_logger_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-as-promised'));
Expand Down
2 changes: 1 addition & 1 deletion test/http_message_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-as-promised'));
Expand Down
2 changes: 1 addition & 1 deletion test/http_request_impl_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-as-promised'));
Expand Down
2 changes: 1 addition & 1 deletion test/http_response_impl_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-as-promised'));
Expand Down
2 changes: 1 addition & 1 deletion test/http_rules_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');
chai.use(require('chai-string'));
Expand Down
2 changes: 1 addition & 1 deletion test/usage_loggers_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// © 2016-2023 Graylog, Inc.
// © 2016-2024 Graylog, Inc.

const chai = require('chai');

Expand Down

0 comments on commit f504e2b

Please sign in to comment.