aboutsummaryrefslogtreecommitdiff
path: root/Plugins/CacheBroker/CacheBrokerEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/CacheBroker/CacheBrokerEntry.cs')
-rw-r--r--Plugins/CacheBroker/CacheBrokerEntry.cs21
1 files changed, 8 insertions, 13 deletions
diff --git a/Plugins/CacheBroker/CacheBrokerEntry.cs b/Plugins/CacheBroker/CacheBrokerEntry.cs
index 876e030..7fea7fa 100644
--- a/Plugins/CacheBroker/CacheBrokerEntry.cs
+++ b/Plugins/CacheBroker/CacheBrokerEntry.cs
@@ -9,21 +9,20 @@
* VNLib collection of libraries and utilities.
*
* CacheBroker is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published
-* by the Free Software Foundation, either version 2 of the License,
-* or (at your option) any later version.
+* it under the terms of the GNU Affero General Public License as
+* published by the Free Software Foundation, either version 3 of the
+* License, or (at your option) any later version.
*
* CacheBroker is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* General Public License for more details.
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
*
-* You should have received a copy of the GNU General Public License
-* along with CacheBroker. If not, see http://www.gnu.org/licenses/.
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see https://www.gnu.org/licenses/.
*/
using System;
-using System.IO;
using System.Collections.Generic;
using VNLib.Utils.Logging;
@@ -34,7 +33,7 @@ namespace VNLib.Plugins.Cache.Broker
{
public sealed class CacheBrokerEntry : PluginBase
{
- public override string PluginName => "Cache.Broker";
+ public override string PluginName => "ObjectCache.Broker";
protected override void OnLoad()
{
@@ -44,10 +43,6 @@ namespace VNLib.Plugins.Cache.Broker
Log.Information("Plugin loaded");
}
- catch (FileNotFoundException)
- {
- Log.Error("Public key file was not found at the specified path");
- }
catch (KeyNotFoundException knf)
{
Log.Error("Required configuration keys were not found {mess}", knf.Message);