~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/efl/LoggingEfl.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
 
3
 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
 
4
 * Copyright (C) 2009-2010 ProFUSION embedded systems
 
5
 * Copyright (C) 2009-2010 Samsung Electronics
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public License
 
18
 * along with this library; see the file COPYING.LIB.  If not, write to
 
19
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
 * Boston, MA 02110-1301, USA.
 
21
 */
 
22
 
 
23
#include "config.h"
 
24
#include "Logging.h"
 
25
 
 
26
#if !LOG_DISABLED
 
27
 
 
28
#include <Eina.h>
 
29
#include <wtf/text/WTFString.h>
 
30
 
 
31
namespace WebCore {
 
32
 
 
33
void initializeLoggingChannelsIfNecessary()
 
34
{
 
35
    static bool didInitializeLoggingChannels = false;
 
36
    if (didInitializeLoggingChannels)
 
37
        return;
 
38
 
 
39
    didInitializeLoggingChannels = true;
 
40
 
 
41
    char* logEnv = getenv("WEBKIT_DEBUG");
 
42
    if (!logEnv)
 
43
        return;
 
44
 
 
45
#if defined(NDEBUG)
 
46
    EINA_LOG_WARN("WEBKIT_DEBUG is not empty, but this is a release build. Notice that many log messages will only appear in a debug build.");
 
47
#endif
 
48
 
 
49
    char** logv = eina_str_split(logEnv, ",", -1);
 
50
 
 
51
    EINA_SAFETY_ON_NULL_RETURN(logv);
 
52
 
 
53
    for (int i = 0; logv[i]; i++) {
 
54
        if (WTFLogChannel* channel = getChannelFromName(logv[i]))
 
55
            channel->state = WTFLogChannelOn;
 
56
    }
 
57
 
 
58
    free(*logv);
 
59
    free(logv);
 
60
 
 
61
    // To disable logging notImplemented set the DISABLE_NI_WARNING
 
62
    // environment variable to 1.
 
63
    LogNotYetImplemented.state = WTFLogChannelOn;
 
64
}
 
65
 
 
66
}
 
67
 
 
68
#endif // !LOG_DISABLED