[SOLVED] Loading config and getting value

Help
I am trying load config file

@Inject
@DefaultConfig(sharedRoot = false)
public ConfigurationLoader<CommentedConfigurationNode> localLoader;
  @Listener
  public void OnServerStarted(GameStartedServerEvent e){
		try {
			CommentedConfigurationNode node = localLoader.load();
			logger.info(node.getNode("test").getBoolean(true)+"");
		} catch (IOException e1) {
			
		}
}

My config file

test=false

And i have error:
[11:18:06] [Server thread/WARN] [Sponge]: /* java.lang.NullPointerException: null
I solved the problem. In Logger i forgot add @Inject

Considering your function for the event doesnt have the @Listener it means its never read. So can you post the code in question. Also a full error log would be nice, while Nullpointerexception is something to go off its not specific to what line or how it came. A full error log will tell us that

Sorry, I not correct pasted.