Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify static fields/methods to non-static for less memory consumption #4

Merged
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Update LogglyStoreLogsInBuffer.cs

  • Loading branch information
Shwetajain148
Shwetajain148 committed Mar 7, 2017
commit 16e41cb434190a52f8400aa5c1ec0711252ec94d
@@ -1,12 +1,12 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;

namespace log4net.loggly
{
public class LogglyStoreLogsInBuffer
{
public List<string> arrBufferedMessage = new List<string>();
public static List<string> arrBufferedMessage = new List<string>();

public void storeBulkLogs(ILogglyAppenderConfig config, List<string> logs, bool isBulk)
{
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.