We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The problems are here:
$(function() { var log4net = $.connection.hub;//.signalrAppenderHub;<-------------!!!!
// <------ log4net.client is undef log4net.client.onLoggedEvent = function(formattedEvent, loggedEvent) { if (console && console.log) console.log("onLoggedEvent", formattedEvent, loggedEvent);
var dtm = new Date(Date.parse(loggedEvent.TimeStamp)); var dateCell = $("<td>").css("white-space", "nowrap").text(printValue(dtm)); var levelCell = $("<td>").text(loggedEvent.Level.Name); var detailsCell = $("<td>").text(loggedEvent.Message); var row = $("<tr>").append(dateCell, levelCell, detailsCell); row = row.addClass(convertDebugStyleToBootstrap(loggedEvent.Level.Name.toLowerCase())); row.bind("click", formattedEvent, showDetails); $('#log-table tbody').append(row); }; $.connection.hub.logging = true; $.connection.hub.start(function() { log4net.server.listen(); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problems are here:
$(function() {
var log4net = $.connection.hub;//.signalrAppenderHub;<-------------!!!!
// <------ log4net.client is undef
log4net.client.onLoggedEvent = function(formattedEvent, loggedEvent) {
if (console && console.log)
console.log("onLoggedEvent", formattedEvent, loggedEvent);
The text was updated successfully, but these errors were encountered: