Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Gets or sets whether logging chat to Logs\WoWChatLog.txt is enabled.

isLogging = LoggingChat([newState])

Parameters[]

Arguments[]

newState
boolean - toggles chat logging

Returns[]

isLogging
boolean - current state of logging

Example[]

if (LoggingChat()) then
  print("Chat is already being logged")
else
  print("Chat is not being logged - starting it!")  
  LoggingChat(1)
  print("Chat is now being logged to Logs\\WOWChatLog.txt")
end
Advertisement